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

Unified Diff: src/trusted/service_runtime/env_cleanser.c

Issue 3391010: Update the PPAPI DEPS revision. This change included parameter profile chang... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 10 years, 3 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 | « src/shared/ppapi_proxy/plugin_var.cc ('k') | tests/fake_browser_ppapi/fake_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/env_cleanser.c
===================================================================
--- src/trusted/service_runtime/env_cleanser.c (revision 3312)
+++ src/trusted/service_runtime/env_cleanser.c (working copy)
@@ -65,11 +65,13 @@
}
int NaClEnvInWhitelist(char const *env_entry) {
- return NULL != bsearch((void const *) &env_entry,
+ int retval = NULL != bsearch((void const *) &env_entry,
(void const *) kNaClEnvWhitelist,
NACL_ARRAY_SIZE(kNaClEnvWhitelist) - 1, /* NULL */
sizeof kNaClEnvWhitelist[0],
EnvCmp);
+ printf("inwhitelist: %s %d\n", env_entry, retval);
+ return retval;
}
/* PRE: sizeof(char *) is a power of 2 */
« no previous file with comments | « src/shared/ppapi_proxy/plugin_var.cc ('k') | tests/fake_browser_ppapi/fake_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698