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

Unified Diff: src/trusted/validator_x86/ncenuminsts_x86_32.c

Issue 10116004: Eliminate bundle_size parameter from validator interface. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Merge Created 8 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
Index: src/trusted/validator_x86/ncenuminsts_x86_32.c
diff --git a/src/trusted/validator_x86/ncenuminsts_x86_32.c b/src/trusted/validator_x86/ncenuminsts_x86_32.c
index bd47a60dbe622a95369ca1d88fc956cabca59f64..2c3b8fe49d42bad5c676ab901ff19f92a20adf4f 100644
--- a/src/trusted/validator_x86/ncenuminsts_x86_32.c
+++ b/src/trusted/validator_x86/ncenuminsts_x86_32.c
@@ -104,7 +104,7 @@ Bool NaClSegmentValidates(uint8_t* mbase,
/* check if NaCl thinks the given code segment is valid. */
NaClSetAllCPUFeatures(&cpu_features);
status = NaCl_ApplyValidator_x86_32(
- NACL_SB_DEFAULT, vbase, mbase, size, 32,
+ NACL_SB_DEFAULT, vbase, mbase, size,
/* stubout_mode= */ FALSE, /* readonly_text= */ FALSE, &cpu_features,
NULL);
switch (status) {

Powered by Google App Engine
This is Rietveld 408576698