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

Unified Diff: runtime/bin/main.cc

Issue 1932253002: Fix gcc 4.9 build errors. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 | runtime/vm/compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/main.cc
diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc
index 0ef66535c5301800f038500af7f04f9c2ba2b515..fb8b33844d5bb108525de5c6ed0a05c5a2d40223 100644
--- a/runtime/bin/main.cc
+++ b/runtime/bin/main.cc
@@ -1417,9 +1417,9 @@ bool RunMainIsolate(const char* script_name,
uint8_t* assembly_buffer = NULL;
intptr_t assembly_size = 0;
uint8_t* instructions_blob_buffer = NULL;
- intptr_t instructions_blob_size = NULL;
+ intptr_t instructions_blob_size = 0;
uint8_t* rodata_blob_buffer = NULL;
- intptr_t rodata_blob_size = NULL;
+ intptr_t rodata_blob_size = 0;
if (use_blobs) {
result = Dart_CreatePrecompiledSnapshotBlob(
&vm_isolate_buffer,
« no previous file with comments | « no previous file | runtime/vm/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698