diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-30 13:23:49 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-30 13:23:49 +0000 |
commit | 4382c23149a8bd6d438c7d2c73e599fddf56d333 (patch) | |
tree | 58ee1ed13de70bac0388ae61b12d85dad1943ab8 /gdb/gnu-nat.c | |
parent | 7efb824a6a520583319a602c4b60a6d5a2b03a32 (diff) | |
download | gdb-4382c23149a8bd6d438c7d2c73e599fddf56d333.tar.gz |
2003-09-30 Andrew Cagney <cagney@redhat.com>
* remote-vxsparc.c (vx_read_register): Replace bzero with memset.
* remote-vxmips.c (vx_read_register): Ditto.
* remote-vx68.c (vx_read_register): Ditto.
* gnu-nat.c (inf_validate_procs): Ditto.
Diffstat (limited to 'gdb/gnu-nat.c')
-rw-r--r-- | gdb/gnu-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c index a75b16921da..a61d577f839 100644 --- a/gdb/gnu-nat.c +++ b/gdb/gnu-nat.c @@ -1024,7 +1024,7 @@ inf_validate_procs (struct inf *inf) /* The current thread we're considering. */ struct proc *thread = inf->threads; - bzero (matched, sizeof (matched)); + memset (matched, 0, sizeof (matched)); while (thread) { |