Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: runtime/vm/virtual_memory_linux.cc

Issue 1406013004: Fixes shutdown crashes. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/virtual_memory_linux.cc
diff --git a/runtime/vm/virtual_memory_linux.cc b/runtime/vm/virtual_memory_linux.cc
index 26e38c778f7ec154ab9d20684354a78802189115..016f35c0238bb1f12d9340be97a933ca8f2b265e 100644
--- a/runtime/vm/virtual_memory_linux.cc
+++ b/runtime/vm/virtual_memory_linux.cc
@@ -52,7 +52,9 @@ static void unmap(void* address, intptr_t size) {
VirtualMemory::~VirtualMemory() {
- unmap(address(), reserved_size_);
+ if (!dummy()) {
+ unmap(address(), reserved_size_);
+ }
}

Powered by Google App Engine
This is Rietveld 408576698