mirror of
https://github.com/reactos/reactos.git
synced 2025-05-14 23:03:53 +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
|
@ -54,6 +54,10 @@ DWORD STDCALL NtGdiDdCreateSurface(
|
||||||
/* FIXME alloc so mayne we need */
|
/* FIXME alloc so mayne we need */
|
||||||
PHANDLE *myhSurface[1];
|
PHANDLE *myhSurface[1];
|
||||||
|
|
||||||
|
/* GCC4 warnns on value are unisitaed,
|
||||||
|
but they are initated in seh
|
||||||
|
*/
|
||||||
|
myhSurface[0] = 0;
|
||||||
|
|
||||||
DPRINT1("NtGdiDdCreateSurface\n");
|
DPRINT1("NtGdiDdCreateSurface\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue