diff options
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 0ea2687..42bd4b4 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -407,8 +407,8 @@ explicit_lookup_type (real_filenum, index) f->length *= 2; f->vector = (struct type **) xrealloc (f->vector, f->length * sizeof (struct type *)); - bzero (&f->vector[f->length / 2], - f->length * sizeof (struct type *) / 2); + memset (&f->vector[f->length / 2], + '\0', f->length * sizeof (struct type *) / 2); } return &f->vector[index]; } |