From: Timo Kreuzer Date: Fri, 29 Oct 2010 09:31:54 +0000 (+0000) Subject: [WIN32K] X-Git-Tag: backups/baikalnet@57446~60 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=788c89ca8b8f8f0a0ef45a933315fa8be0ced115 [WIN32K] Fix possible use of uninitialized variable. Spotted by Amine. svn path=/trunk/; revision=49338 --- diff --git a/reactos/subsystems/win32/win32k/eng/bitblt.c b/reactos/subsystems/win32/win32k/eng/bitblt.c index e6dd4970d5c..3525a2caf2a 100644 --- a/reactos/subsystems/win32/win32k/eng/bitblt.c +++ b/reactos/subsystems/win32/win32k/eng/bitblt.c @@ -370,6 +370,7 @@ EngBitBlt(SURFOBJ *DestObj, } else { + InputPoint.x = InputPoint.y = 0; InputRect.left = 0; InputRect.right = DestRect->right - DestRect->left; InputRect.top = 0;