Author: tfaber
Date: Sat Sep 27 10:58:07 2014
New Revision: 64333
URL:
http://svn.reactos.org/svn/reactos?rev=64333&view=rev
Log:
[SPEC2DEF]
- Fix use of uninitialized variable
Modified:
trunk/reactos/tools/spec2def/spec2def.c
Modified: trunk/reactos/tools/spec2def/spec2def.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/spec2def/spec2def.c?…
==============================================================================
--- trunk/reactos/tools/spec2def/spec2def.c [iso-8859-1] (original)
+++ trunk/reactos/tools/spec2def/spec2def.c [iso-8859-1] Sat Sep 27 10:58:07 2014
@@ -182,7 +182,7 @@
{
int i;
int bRelay = 0;
- int bInPrototype;
+ int bInPrototype = 0;
if (pexp->nCallingConvention != CC_STUB &&
(pexp->uFlags & FL_STUB) == 0)