diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-07-31 05:05:05 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-07-31 05:05:05 +0000 |
commit | 2689df5aa9478f9be260bfa887e967236d6e0284 (patch) | |
tree | 3b255e411b2c4a702db4d6a0e9f2926bbc7bd41f /gdb/infptrace.c | |
parent | 5d0804606e11e16b7f785ff0a1bdcbebbb30a337 (diff) | |
download | gdb-2689df5aa9478f9be260bfa887e967236d6e0284.zip gdb-2689df5aa9478f9be260bfa887e967236d6e0284.tar.gz gdb-2689df5aa9478f9be260bfa887e967236d6e0284.tar.bz2 |
* infptrace.c: Update copyright year.
(fetch_register): Pass NULL in regcache_raw_supply call instead of
explicitly setting the buffer to all zeroes.
Diffstat (limited to 'gdb/infptrace.c')
-rw-r--r-- | gdb/infptrace.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/infptrace.c b/gdb/infptrace.c index 561d2bc..3b83fc7 100644 --- a/gdb/infptrace.c +++ b/gdb/infptrace.c @@ -1,6 +1,6 @@ /* Low level Unix child interface to ptrace, for GDB when running under Unix. Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, - 1998, 1999, 2000, 2001, 2002 + 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -374,8 +374,7 @@ fetch_register (int regno) if (CANNOT_FETCH_REGISTER (regno)) { - memset (buf, '\0', DEPRECATED_REGISTER_RAW_SIZE (regno)); /* Supply zeroes */ - regcache_raw_supply (current_regcache, regno, buf); + regcache_raw_supply (current_regcache, regno, NULL); return; } |