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

Unified Diff: runtime/vm/virtual_memory.h

Issue 1406023011: Initialize VirtualMemory::embedder_allocated_. (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/virtual_memory.h
diff --git a/runtime/vm/virtual_memory.h b/runtime/vm/virtual_memory.h
index 2970979cb57daf1882835ea8d88f367ee37675c9..53ba57df510288a2e0dc4bcc75ae73cd4eac9137 100644
--- a/runtime/vm/virtual_memory.h
+++ b/runtime/vm/virtual_memory.h
@@ -84,7 +84,8 @@ class VirtualMemory {
// It does not reserve any virtual address space on its own.
explicit VirtualMemory(const MemoryRegion& region) :
region_(region.pointer(), region.size()),
- reserved_size_(region.size()) { }
+ reserved_size_(region.size()),
+ embedder_allocated_(false) { }
MemoryRegion region_;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698