mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 02:32:41 +00:00
winex11: Avoid memory leaks (coverity).
This commit is contained in:
parent
42f791ccd5
commit
585a66a463
@ -2400,6 +2400,7 @@ static BOOL X11DRV_CLIPBOARD_ReadProperty(Display *display, Window w, Atom prop,
|
||||
if (!tmp)
|
||||
{
|
||||
HeapFree(GetProcessHeap(), 0, buf);
|
||||
HeapFree(GetProcessHeap(), 0, prop_data);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -1405,9 +1405,9 @@ static void UploadGlyph(struct xrender_physdev *physDev, int glyph, AA_Type form
|
||||
|
||||
pXRenderAddGlyphs(gdi_display, formatEntry->glyphset, &gid, &gi, 1,
|
||||
buflen ? buf : zero, buflen ? buflen : sizeof(zero));
|
||||
HeapFree(GetProcessHeap(), 0, buf);
|
||||
}
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, buf);
|
||||
formatEntry->gis[glyph] = gi;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user