|
From: <sv...@va...> - 2005-09-23 00:25:13
|
Author: sewardj
Date: 2005-09-23 01:25:10 +0100 (Fri, 23 Sep 2005)
New Revision: 4725
Log:
Fix stupid error in VG_(am_relocate_nooverlap_client) that was picked
up by the sync-checker.
Modified:
branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c
Modified: branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c 2005-09-22 23:58:3=
8 UTC (rev 4724)
+++ branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c 2005-09-23 00:25:1=
0 UTC (rev 4725)
@@ -2500,7 +2500,7 @@
oldseg.offset +=3D ((ULong)old_addr) - ((ULong)oldseg.start);
oldseg.start =3D new_addr;
oldseg.end =3D new_addr + new_len - 1;
- add_segment( &seg );
+ add_segment( &oldseg );
=20
AM_SANITY_CHECK;
return True;
|