From: Wolfgang (Blub) Bumiller Date: Wed, 15 Aug 2012 10:13:15 +0000 (+0200) Subject: remove MEM_VECTOR_INIT - the memset does it all, don't give a false sense of initiali... X-Git-Tag: 0.1-rc1~276 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=42e2102839d900bcc2a7e38ccf951e3b8bc487a9;p=xonotic%2Fgmqcc.git remove MEM_VECTOR_INIT - the memset does it all, don't give a false sense of initialization since it wasn't complete anyway --- diff --git a/parser.c b/parser.c index 92f49e9..5091767 100644 --- a/parser.c +++ b/parser.c @@ -1988,9 +1988,6 @@ bool parser_init() return false; memset(parser, 0, sizeof(*parser)); - - MEM_VECTOR_INIT(parser, globals); - MEM_VECTOR_INIT(parser, locals); return true; }