diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2017-02-20 08:01:04 -0500 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2017-02-20 08:03:13 -0500 |
commit | 1b076f2540e51055a7c6a4ee8fdfc604b54fb70a (patch) | |
tree | d98dee77c34b58ae09f169221ebdfd293e03e3b1 /gdb/ChangeLog | |
parent | 9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79 (diff) | |
download | fsf-binutils-gdb-1b076f2540e51055a7c6a4ee8fdfc604b54fb70a.zip fsf-binutils-gdb-1b076f2540e51055a7c6a4ee8fdfc604b54fb70a.tar.gz fsf-binutils-gdb-1b076f2540e51055a7c6a4ee8fdfc604b54fb70a.tar.bz2 |
Fix thinko on last commit
On fork-child.c:trace_start_error, va_end should refer to 'ap', not
'args. This fixes it.
Sorry about the breakage.
gdb/ChangeLog:
2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
PR gdb/16188
* fork-child.c (trace_start_error): Fix thinko. va_end should
refer to 'ap', not 'args'.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cf68c7e..610755c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,4 +1,10 @@ 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com> + + PR gdb/16188 + * fork-child.c (trace_start_error): Fix thinko. va_end should + refer to 'ap', not 'args'. + +2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com> Pedro Alves <palves@redhat.com> PR gdb/16188 |