winex11.drv: Fix two missing unlocks on error paths. Found by Smatch.

oldstable
Michael Stefaniuc 2007-10-21 01:15:53 +02:00 committed by Alexandre Julliard
parent e01e8a0192
commit 4e2eef2b25
1 changed files with 10 additions and 2 deletions

View File

@ -238,7 +238,11 @@ BOOL X11DRV_set_win_format( HWND hwnd, XID fbconfig_id )
wine_tsx11_lock();
vis = visual_from_fbconfig_id(fbconfig_id);
if(!vis) return FALSE;
if(!vis)
{
wine_tsx11_unlock();
return FALSE;
}
if(data->whole_window && vis->visualid == XVisualIDFromVisual(visual))
{
@ -384,7 +388,11 @@ static void update_gl_drawable(Display *display, struct x11drv_win_data *data, c
wine_tsx11_lock();
vis = visual_from_fbconfig_id(data->fbconfig_id);
if(!vis) return;
if(!vis)
{
wine_tsx11_unlock();
return;
}
pix = XCreatePixmap(display, parent, w, h, vis->depth);
if(!pix)