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

Unified Diff: runtime/vm/native_entry.cc

Issue 2383293003: - fix some cases where we are using uninitialized memory (Closed)
Patch Set: address self code review. Created 4 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 | « runtime/vm/isolate.cc ('k') | runtime/vm/native_symbol_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/native_entry.cc
diff --git a/runtime/vm/native_entry.cc b/runtime/vm/native_entry.cc
index e1e7e45e7f78115690dba43a1edf37a98905303c..ad6d2209715412f94f9a658e0f51e1dfbc4543f7 100644
--- a/runtime/vm/native_entry.cc
+++ b/runtime/vm/native_entry.cc
@@ -99,6 +99,7 @@ uword NativeEntry::NativeCallWrapperEntry() {
}
+NO_SANITIZE_MEMORY
Florian Schneider 2016/10/04 21:02:02 Here, it would be nice to figure out why the unpoi
siva 2016/10/05 20:38:07 Figured out what the problem was, we need to unpoi
bool NativeEntry::ReturnValueIsError(NativeArguments* arguments) {
RawObject* retval = arguments->ReturnValue();
return (retval->IsHeapObject() &&
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/native_symbol_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698