remove MEM_VECTOR_INIT - the memset does it all, don't give a false sense of initialization since it wasn't complete anyway

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-15 12:13:15 +02:00
parent 5b4c7a67a7
commit 42e2102839

View file

@ -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;
}