diff options
author | marha <marha@users.sourceforge.net> | 2011-02-16 15:16:06 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-02-16 15:16:06 +0000 |
commit | 805aafd4cb60a205a350f06da92f6981ac1d8208 (patch) | |
tree | a35e6a06ce3fe1978234988a07f6d8522bcecac6 /xorg-server/hw/xwin/winwndproc.c | |
parent | 5e66daeb42145926d364d85d394db561be8a6bb8 (diff) | |
download | vcxsrv-805aafd4cb60a205a350f06da92f6981ac1d8208.tar.gz vcxsrv-805aafd4cb60a205a350f06da92f6981ac1d8208.tar.bz2 vcxsrv-805aafd4cb60a205a350f06da92f6981ac1d8208.zip |
Initialise uninitialised variables
Diffstat (limited to 'xorg-server/hw/xwin/winwndproc.c')
-rw-r--r-- | xorg-server/hw/xwin/winwndproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-server/hw/xwin/winwndproc.c b/xorg-server/hw/xwin/winwndproc.c index 8baa25e6d..649de4368 100644 --- a/xorg-server/hw/xwin/winwndproc.c +++ b/xorg-server/hw/xwin/winwndproc.c @@ -250,7 +250,7 @@ winWindowProc (HWND hwnd, UINT message, #endif )) { - DWORD dwWidth, dwHeight; + DWORD dwWidth = 0, dwHeight = 0; if (s_pScreenInfo->fMultipleMonitors) { |