mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 19:37:10 +00:00
[WIN32K]
Fix gcc uninitialized variable warning svn path=/trunk/; revision=56463
This commit is contained in:
parent
9c5d9d1b46
commit
cd86c8e1e2
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ GreCreateBitmapEx(
|
|||
{
|
||||
PSURFACE psurf;
|
||||
HBITMAP hbmp;
|
||||
PVOID pvCompressedBits;
|
||||
PVOID pvCompressedBits = NULL;
|
||||
|
||||
/* Verify format */
|
||||
if (iFormat < BMF_1BPP || iFormat > BMF_PNG) return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue