From: Dale Weiler Date: Thu, 25 Apr 2013 17:11:15 +0000 (+0000) Subject: Just fucking initialize everything X-Git-Tag: 0.2.9~8 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=aed2b1031c6466a2dbcf909faeac1ac1cff0f6e6;hp=68ca2c496298573553f0cf98d2cf556c25b591ee Just fucking initialize everything --- diff --git a/parser.c b/parser.c index 14cf583..7034e64 100644 --- a/parser.c +++ b/parser.c @@ -5639,11 +5639,11 @@ skipvar: } if (parser->tok == '#') { - ast_function *func = NULL; - ast_value *number = NULL; - float fractional; - float integral; - int builtin_num; + ast_function *func = NULL; + ast_value *number = NULL; + float fractional = 0; + float integral = 0; + int builtin_num = 0; if (localblock) { parseerror(parser, "cannot declare builtins within functions");