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

Unified Diff: runtime/bin/utils_linux.cc

Issue 2285223003: Fix native extension lookup (Closed)
Patch Set: Add back test for '/' Created 4 years, 4 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: runtime/bin/utils_linux.cc
diff --git a/runtime/bin/utils_linux.cc b/runtime/bin/utils_linux.cc
index 2029071abebae223b5e3d1cb21f85d6b1d06d9f7..8266102a893f1d0837ec5c136da25312b99a2345 100644
--- a/runtime/bin/utils_linux.cc
+++ b/runtime/bin/utils_linux.cc
@@ -69,6 +69,11 @@ char* StringUtils::Utf8ToConsoleString(
}
+char* StringUtils::StrNDup(const char* s, intptr_t n) {
+ return strndup(s, n);
+}
+
+
bool ShellUtils::GetUtf8Argv(int argc, char** argv) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698