[SPEC2DEF]
authorThomas Faber <thomas.faber@reactos.org>
Sat, 27 Sep 2014 10:58:07 +0000 (10:58 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sat, 27 Sep 2014 10:58:07 +0000 (10:58 +0000)
- Fix use of uninitialized variable

svn path=/trunk/; revision=64333

reactos/tools/spec2def/spec2def.c

index 1090a6b..b6c29cc 100644 (file)
@@ -182,7 +182,7 @@ OutputLine_stub(FILE *file, EXPORT *pexp)
 {
     int i;
     int bRelay = 0;
 {
     int i;
     int bRelay = 0;
-    int bInPrototype;
+    int bInPrototype = 0;
 
     if (pexp->nCallingConvention != CC_STUB &&
         (pexp->uFlags & FL_STUB) == 0)
 
     if (pexp->nCallingConvention != CC_STUB &&
         (pexp->uFlags & FL_STUB) == 0)