Fixed uninitialized return.
authorArmin Novak <armin.novak@thincast.com>
Wed, 19 Oct 2016 09:06:47 +0000 (11:06 +0200)
committerArmin Novak <armin.novak@thincast.com>
Wed, 19 Oct 2016 09:11:35 +0000 (11:11 +0200)
client/X11/xf_gdi.c

index e684c59..c52d6c7 100644 (file)
@@ -974,7 +974,7 @@ static BOOL xf_gdi_update_screen(xfContext* xfc,
                                  const SURFACE_BITS_COMMAND* cmd,
                                  const BYTE* pSrcData)
 {
-       BOOL ret;
+       BOOL ret = FALSE;
        XImage* image;
 
        if (!xfc || !pSrcData)