Re: [PATCH] Fix cp_parser_braced_list

2013-03-05 Thread Jason Merrill
OK. Jason

[PATCH] Fix cp_parser_braced_list

2013-03-04 Thread Jakub Jelinek
Hi! As reported by valgrind, cp_parser_braced_list doesn't initialize *non_constant_p when seeing just {}, and thus when e.g. cp_parser_condition calls it, non_constant_p is uninitialized when cp_finish_decl is called with !non_constant_p. Fixed thusly, bootstrapped/regtested on x86_64-linux and