[WIN32K]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 29 Oct 2010 09:31:54 +0000 (09:31 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 29 Oct 2010 09:31:54 +0000 (09:31 +0000)
Fix possible use of uninitialized variable. Spotted by Amine.

svn path=/trunk/; revision=49338

reactos/subsystems/win32/win32k/eng/bitblt.c

index e6dd497..3525a2c 100644 (file)
@@ -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;