From d1587a375512216924d940f7e6e3a8b20ef616e7 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 27 Sep 2014 10:58:07 +0000 Subject: [PATCH] [SPEC2DEF] - Fix use of uninitialized variable svn path=/trunk/; revision=64333 --- reactos/tools/spec2def/spec2def.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/spec2def/spec2def.c b/reactos/tools/spec2def/spec2def.c index 1090a6ba9a4..b6c29cc410b 100644 --- a/reactos/tools/spec2def/spec2def.c +++ b/reactos/tools/spec2def/spec2def.c @@ -182,7 +182,7 @@ OutputLine_stub(FILE *file, EXPORT *pexp) { int i; int bRelay = 0; - int bInPrototype; + int bInPrototype = 0; if (pexp->nCallingConvention != CC_STUB && (pexp->uFlags & FL_STUB) == 0) -- 2.17.1