[unused] eliminate unused functions

This commit is contained in:
akallabeth
2025-01-31 14:20:13 +01:00
parent 8a69258f38
commit 00e61074b2
10 changed files with 8 additions and 109 deletions

View File

@@ -185,14 +185,10 @@ static PresentationContext* PresentationContext_new(VideoClientContext* video, B
UINT32 x, UINT32 y, UINT32 width, UINT32 height)
{
size_t s = 4ULL * width * height;
VideoClientContextPriv* priv = NULL;
PresentationContext* ret = NULL;
WINPR_ASSERT(video);
priv = video->priv;
WINPR_ASSERT(priv);
if (s > INT32_MAX)
return NULL;