From 788c89ca8b8f8f0a0ef45a933315fa8be0ced115 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 29 Oct 2010 09:31:54 +0000 Subject: [PATCH] [WIN32K] Fix possible use of uninitialized variable. Spotted by Amine. svn path=/trunk/; revision=49338 --- reactos/subsystems/win32/win32k/eng/bitblt.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.17.1