winex11: Don't free a variable that is no longer allocated on the heap.

This commit is contained in:
Alexandre Julliard 2012-06-04 11:00:10 +02:00
parent c296d1fbe1
commit 1adbfe921b
1 changed files with 0 additions and 1 deletions

View File

@ -847,7 +847,6 @@ static unsigned long *get_bitmap_argb( HDC hdc, HBITMAP color, HBITMAP mask, uns
if (!((mask_bits[i * width_bytes + j / 8] << (j % 8)) & 0x80)) *ptr |= 0xff000000;
HeapFree( GetProcessHeap(), 0, mask_bits );
}
HeapFree( GetProcessHeap(), 0, info );
/* convert to array of longs */
if (bits && sizeof(long) > sizeof(int))