* cli/cli-script.c (realloc_body_list): Zero new parts of body_list.
+2006-06-21 Andrew Stubbs <andrew.stubbs@st.com>
+
+ * cli/cli-script.c (realloc_body_list): Zero new parts of body_list.
+
2006-06-20 Joel Brobecker <brobecker@adacore.com>
* GDB 6.5 released from GDB 6.5 branch.
xmalloc (sizeof (struct command_line *) * new_length);
memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
+ memset (body_list + n, 0, sizeof (struct command_line *) * (new_length - n));
xfree (command->body_list);
command->body_list = body_list;