|
From: <sv...@va...> - 2015-09-21 20:38:09
|
Author: florian
Date: Mon Sep 21 21:38:02 2015
New Revision: 15669
Log:
In ML_(am_clientise) give the template segment the correct
address range.
Modified:
branches/ASPACEM_TWEAKS/coregrind/m_aspacemgr/aspacemgr-segments.c
Modified: branches/ASPACEM_TWEAKS/coregrind/m_aspacemgr/aspacemgr-segments.c
==============================================================================
--- branches/ASPACEM_TWEAKS/coregrind/m_aspacemgr/aspacemgr-segments.c (original)
+++ branches/ASPACEM_TWEAKS/coregrind/m_aspacemgr/aspacemgr-segments.c Mon Sep 21 21:38:02 2015
@@ -1415,6 +1415,8 @@
ML_(am_add_segment) will take care of everything. */
NSegment tmp = *seg;
+ tmp.start = start;
+ tmp.end = start + len - 1;
switch (seg->kind) {
case SkFileV: tmp.kind = SkFileC; break;
case SkAnonV: tmp.kind = SkAnonC; break;
|