mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
fixing a gcc4 warring. why does gcc4 warning a uninsiated value but the value are being iniste in seh
svn path=/trunk/; revision=26123
This commit is contained in:
parent
287d86906b
commit
f06ffd93b8
1 changed files with 5 additions and 1 deletions
|
@ -53,7 +53,11 @@ DWORD STDCALL NtGdiDdCreateSurface(
|
|||
|
||||
/* FIXME alloc so mayne we need */
|
||||
PHANDLE *myhSurface[1];
|
||||
|
||||
|
||||
/* GCC4 warnns on value are unisitaed,
|
||||
but they are initated in seh
|
||||
*/
|
||||
myhSurface[0] = 0;
|
||||
|
||||
DPRINT1("NtGdiDdCreateSurface\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue