summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--simpleperf/OfflineUnwinder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpleperf/OfflineUnwinder.cpp b/simpleperf/OfflineUnwinder.cpp
index 25a4914b..55b46e2b 100644
--- a/simpleperf/OfflineUnwinder.cpp
+++ b/simpleperf/OfflineUnwinder.cpp
@@ -131,7 +131,7 @@ static unwindstack::MapInfo* CreateMapInfo(const MapEntry* entry) {
}
}
}
- return new unwindstack::MapInfo(entry->start_addr, entry->get_end_addr(), pgoff,
+ return new unwindstack::MapInfo(nullptr, entry->start_addr, entry->get_end_addr(), pgoff,
PROT_READ | PROT_EXEC | entry->flags, name);
}