Don't free a modified pointer.
This commit is contained in:
parent
c292f4861d
commit
6c0cd69f22
|
@ -425,7 +425,7 @@ static int AllocEntry(void)
|
||||||
static BOOL get_gasp_flags(X11DRV_PDEVICE *physDev, WORD *flags)
|
static BOOL get_gasp_flags(X11DRV_PDEVICE *physDev, WORD *flags)
|
||||||
{
|
{
|
||||||
DWORD size;
|
DWORD size;
|
||||||
WORD *gasp;
|
WORD *gasp, *buffer;
|
||||||
WORD num_recs;
|
WORD num_recs;
|
||||||
DWORD ppem;
|
DWORD ppem;
|
||||||
TEXTMETRICW tm;
|
TEXTMETRICW tm;
|
||||||
|
@ -436,7 +436,7 @@ static BOOL get_gasp_flags(X11DRV_PDEVICE *physDev, WORD *flags)
|
||||||
if(size == GDI_ERROR)
|
if(size == GDI_ERROR)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
gasp = HeapAlloc(GetProcessHeap(), 0, size);
|
gasp = buffer = HeapAlloc(GetProcessHeap(), 0, size);
|
||||||
GetFontData(physDev->hdc, MS_GASP_TAG, 0, gasp, size);
|
GetFontData(physDev->hdc, MS_GASP_TAG, 0, gasp, size);
|
||||||
|
|
||||||
GetTextMetricsW(physDev->hdc, &tm);
|
GetTextMetricsW(physDev->hdc, &tm);
|
||||||
|
@ -454,7 +454,7 @@ static BOOL get_gasp_flags(X11DRV_PDEVICE *physDev, WORD *flags)
|
||||||
}
|
}
|
||||||
TRACE("got flags %04x for ppem %ld\n", *flags, ppem);
|
TRACE("got flags %04x for ppem %ld\n", *flags, ppem);
|
||||||
|
|
||||||
HeapFree(GetProcessHeap(), 0, gasp);
|
HeapFree(GetProcessHeap(), 0, buffer);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue