Commit 7b5571cc authored by Raphael Junqueira's avatar Raphael Junqueira Committed by Alexandre Julliard

x11drv: cleanup not longer used data on X11DRV_PDEVICE.

parent ca1c26b9
...@@ -164,8 +164,6 @@ BOOL X11DRV_DeleteDC( X11DRV_PDEVICE *physDev ) ...@@ -164,8 +164,6 @@ BOOL X11DRV_DeleteDC( X11DRV_PDEVICE *physDev )
DeleteObject( physDev->region ); DeleteObject( physDev->region );
wine_tsx11_lock(); wine_tsx11_lock();
XFreeGC( gdi_display, physDev->gc ); XFreeGC( gdi_display, physDev->gc );
while (physDev->used_visuals-- > 0)
XFree(physDev->visuals[physDev->used_visuals]);
wine_tsx11_unlock(); wine_tsx11_unlock();
HeapFree( GetProcessHeap(), 0, physDev ); HeapFree( GetProcessHeap(), 0, physDev );
return TRUE; return TRUE;
......
...@@ -140,8 +140,6 @@ typedef struct ...@@ -140,8 +140,6 @@ typedef struct
int depth; /* bit depth of the DC */ int depth; /* bit depth of the DC */
int exposures; /* count of graphics exposures operations */ int exposures; /* count of graphics exposures operations */
struct dce *dce; /* opaque pointer to DCE */ struct dce *dce; /* opaque pointer to DCE */
XVisualInfo *visuals[MAX_PIXELFORMATS];
int used_visuals;
int current_pf; int current_pf;
XRENDERINFO xrender; XRENDERINFO xrender;
} X11DRV_PDEVICE; } X11DRV_PDEVICE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment