From: Andrew Stubbs Date: Wed, 21 Jun 2006 10:49:16 +0000 (+0000) Subject: 2006-06-21 Andrew Stubbs X-Git-Tag: newlib-csl-sourcerygxx-3_4_4-25~246 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42b575e54591594e33810221501585722eb80623;p=platform%2Fupstream%2Fbinutils.git 2006-06-21 Andrew Stubbs * cli/cli-script.c (realloc_body_list): Zero new parts of body_list. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 463cf7a..0007058 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-06-21 Andrew Stubbs + + * cli/cli-script.c (realloc_body_list): Zero new parts of body_list. + 2006-06-20 Joel Brobecker * GDB 6.5 released from GDB 6.5 branch. diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c index 4f44477..643eb74 100644 --- a/gdb/cli/cli-script.c +++ b/gdb/cli/cli-script.c @@ -701,6 +701,7 @@ realloc_body_list (struct command_line *command, int new_length) 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;