aboutsummaryrefslogtreecommitdiff
path: root/lib/libthread_db
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2017-04-20 17:49:37 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2017-04-20 17:49:37 +0000
commitfebd54ebb7317f4e0fb6264bd181782129564cd1 (patch)
treef8058e2a48fafd3ac87e0ba52b6ef17849030483 /lib/libthread_db
parent1f2b051d84547c7ee9a163a267a76e3c8ca4a4fe (diff)
downloadsrc-febd54ebb7317f4e0fb6264bd181782129564cd1.tar.gz
src-febd54ebb7317f4e0fb6264bd181782129564cd1.zip
libpthread_db: leave the memset size from unchanged.
The size for the memset in pt_map_thread() shouldn't actually match the reallocarray() so undo that part of r317200. X-MFC with: r317200
Notes
Notes: svn path=/head/; revision=317201
Diffstat (limited to 'lib/libthread_db')
-rw-r--r--lib/libthread_db/libpthread_db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthread_db/libpthread_db.c b/lib/libthread_db/libpthread_db.c
index 66b813ec50d8..55fef7128e40 100644
--- a/lib/libthread_db/libpthread_db.c
+++ b/lib/libthread_db/libpthread_db.c
@@ -100,7 +100,7 @@ pt_map_thread(const td_thragent_t *const_ta, psaddr_t pt, enum pt_type type)
if (new == NULL)
return (-1);
memset(new + ta->map_len, '\0', ta->map_len *
- 2 * sizeof(struct pt_map));
+ sizeof(struct pt_map));
first = ta->map_len;
ta->map = new;
ta->map_len *= 2;