[tests] fix mismatched allocation function

This commit is contained in:
Armin Novak 2024-04-17 09:23:12 +02:00 committed by akallabeth
parent 7f896b649e
commit 14286904e1
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ fail:
if (hBitmap)
gdi_DeleteObject((HGDIOBJECT)hBitmap);
else
free(data);
winpr_aligned_free(data);
return rc;
}