From 60644298799d86dd99476bc890ea484a043daee1 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 9 Aug 2008 08:15:26 +0000 Subject: * i386obsd-nat.c (i386obsd_supply_pcb): Supply the right bytes for the %eip register. --- gdb/i386obsd-nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/i386obsd-nat.c') diff --git a/gdb/i386obsd-nat.c b/gdb/i386obsd-nat.c index 1585efb94ba..016cebd86c9 100644 --- a/gdb/i386obsd-nat.c +++ b/gdb/i386obsd-nat.c @@ -78,7 +78,7 @@ i386obsd_supply_pcb (struct regcache *regcache, struct pcb *pcb) pcb->pcb_esp = pcb->pcb_ebp; pcb->pcb_ebp = read_memory_integer(pcb->pcb_esp, 4); sf.sf_eip = read_memory_integer(pcb->pcb_esp + 4, 4); - regcache_raw_supply (regcache, I386_EIP_REGNUM, &sf); + regcache_raw_supply (regcache, I386_EIP_REGNUM, &sf.sf_eip); } regcache_raw_supply (regcache, I386_EBP_REGNUM, &pcb->pcb_ebp); -- cgit v1.2.1