aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/tracepoint.c
diff options
context:
space:
mode:
authorSergio Durigan Junior <sergiodj@redhat.com>2013-10-16 02:55:27 +0000
committerSergio Durigan Junior <sergiodj@redhat.com>2013-10-16 02:55:27 +0000
commitfd0a4d7688978ee30c27516619705e2ceccf00f9 (patch)
tree01decdabdd8eee1546da319fa3a3b0dd61cbdb5c /gdb/gdbserver/tracepoint.c
parentd92f7ee31f8752821adac3785a8460d0f3d366ee (diff)
downloadfsf-binutils-gdb-fd0a4d7688978ee30c27516619705e2ceccf00f9.zip
fsf-binutils-gdb-fd0a4d7688978ee30c27516619705e2ceccf00f9.tar.gz
fsf-binutils-gdb-fd0a4d7688978ee30c27516619705e2ceccf00f9.tar.bz2
There were two functions who were calling "sizeof" twice.
The first one, dw2_get_real_path from gdb/dwarf2read.c, was actually making use of OBSTACK_CALLOC which already calls "sizeof" for its third argument. The second, download_tracepoint_1 from gdb/gdbserver/tracepoint.c, was explicitly calling "sizeof" inside another "sizeof". This patch fixed both functions. gdb/ChangeLog 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com> PR gdb/16014 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to sizeof. gdb/gdbserver/ChangeLog 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com> PR gdb/16014 * tracepoint.c (download_tracepoint_1): Remove unnecessary double call to sizeof.
Diffstat (limited to 'gdb/gdbserver/tracepoint.c')
-rw-r--r--gdb/gdbserver/tracepoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/tracepoint.c b/gdb/gdbserver/tracepoint.c
index 3288a13..ea1a8a1 100644
--- a/gdb/gdbserver/tracepoint.c
+++ b/gdb/gdbserver/tracepoint.c
@@ -6023,7 +6023,7 @@ download_tracepoint_1 (struct tracepoint *tpoint)
if (ipa_action != 0)
write_inferior_data_ptr
- (actions_array + i * sizeof (sizeof (*tpoint->actions)),
+ (actions_array + i * sizeof (*tpoint->actions),
ipa_action);
}
}