Commit bc83411a bc83411afcf0c4901be8fd5e08a4057f53c69429 by Sergey Poznyakoff

(mh_format_parse): Bugfix. Initialize prog to zero.

1 parent 366c6b86
......@@ -502,6 +502,7 @@ mh_format_parse (char *format_str, mh_format_t *fmt)
yydebug = 1;
start = curp = format_str;
obstack_init (&stack);
format.prog = NULL;
format.progsize = 0;
pc = 0;
mh_code_op (mhop_stop);
......