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

Unified Diff: src/native_client/src/trusted/service_runtime/sel_ldr.c

Issue 7068021: Dynamic loading: Fill pages with halts only when they are needed (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix log messages Created 9 years, 7 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: src/native_client/src/trusted/service_runtime/sel_ldr.c
diff --git a/src/native_client/src/trusted/service_runtime/sel_ldr.c b/src/native_client/src/trusted/service_runtime/sel_ldr.c
index 2604a4b7c8303b7c01d53c932179fd1d9cc2716d..4df8dda30c17dcd2e6ad4f1f0d8d61fe602eb2fc 100644
--- a/src/native_client/src/trusted/service_runtime/sel_ldr.c
+++ b/src/native_client/src/trusted/service_runtime/sel_ldr.c
@@ -107,6 +107,7 @@ int NaClAppCtor(struct NaClApp *nap) {
if (!NaClMutexCtor(&nap->dynamic_load_mutex)) {
goto cleanup_effp_dtor;
}
+ nap->dynamic_page_bitmap = NULL;
nap->dynamic_regions = NULL;
nap->num_dynamic_regions = 0;

Powered by Google App Engine
This is Rietveld 408576698