diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/remote.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2baa756..492caf3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2005-07-20 Wu Zhou <woodzltc@cn.ibm.com> + + * remote.c (remote_pid_to_str): Use xsnprintf instead of snprintf. + 2005-07-18 Mark Kettenis <kettenis@gnu.org> * target.c (normal_pid_to_str): Use xsnprintf instead of snprintf. diff --git a/gdb/remote.c b/gdb/remote.c index 5b6125d..8113674 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5316,10 +5316,8 @@ static char * remote_pid_to_str (ptid_t ptid) { static char buf[32]; - int size; - size = snprintf (buf, sizeof buf, "thread %d", ptid_get_pid (ptid)); - gdb_assert (size < sizeof buf); + xsnprintf (buf, sizeof buf, "thread %d", ptid_get_pid (ptid)); return buf; } |