aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMarcin Kościelnicki <koriakin@0x04.net>2015-10-30 15:52:00 +0000
committerPedro Alves <palves@redhat.com>2015-10-30 15:52:00 +0000
commitd2de23ad3916c9d6f6102688fdbd5fdc73053c43 (patch)
tree54bc2b09dedfe0820104d61fbbf4149be5580a37 /gdb
parentcb658d218b873a69b1f19971695f92d5db17a388 (diff)
downloadfsf-binutils-gdb-d2de23ad3916c9d6f6102688fdbd5fdc73053c43.zip
fsf-binutils-gdb-d2de23ad3916c9d6f6102688fdbd5fdc73053c43.tar.gz
fsf-binutils-gdb-d2de23ad3916c9d6f6102688fdbd5fdc73053c43.tar.bz2
gdb/linux-record: Fix newfstatat handling
The struct stat pointer is in the third argument, not the second. gdb/ChangeLog: * linux-record.c (record_linux_system_call): Fix newstatat.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/linux-record.c8
2 files changed, 11 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a6d0071..433ec95 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2015-10-30 Marcin Kościelnicki <koriakin@0x04.net>
+ * linux-record.c (record_linux_system_call): Fix newstatat.
+
+2015-10-30 Marcin Kościelnicki <koriakin@0x04.net>
+
* linux-record.c (record_linux_system_call): Fix [gs]etgroups16.
2015-10-30 Marcin Kościelnicki <koriakin@0x04.net>
diff --git a/gdb/linux-record.c b/gdb/linux-record.c
index 25cbda1..9f38c0b 100644
--- a/gdb/linux-record.c
+++ b/gdb/linux-record.c
@@ -1112,13 +1112,19 @@ Do you want to stop the program?"),
case gdb_sys_newstat:
case gdb_sys_newlstat:
case gdb_sys_newfstat:
- case gdb_sys_newfstatat:
regcache_raw_read_unsigned (regcache, tdep->arg2, &tmpulongest);
if (record_full_arch_list_add_mem ((CORE_ADDR) tmpulongest,
tdep->size_stat))
return -1;
break;
+ case gdb_sys_newfstatat:
+ regcache_raw_read_unsigned (regcache, tdep->arg3, &tmpulongest);
+ if (record_full_arch_list_add_mem ((CORE_ADDR) tmpulongest,
+ tdep->size_stat))
+ return -1;
+ break;
+
case gdb_sys_uname:
regcache_raw_read_unsigned (regcache, tdep->arg1, &tmpulongest);
if (record_full_arch_list_add_mem ((CORE_ADDR) tmpulongest,