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

Unified Diff: runtime/bin/utils_fuchsia.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_fuchsia.cc
diff --git a/runtime/bin/utils_fuchsia.cc b/runtime/bin/utils_fuchsia.cc
index 1df2aba4e45547cfa9228ce9da418a97114a0263..0809723b8a0c96fb7afbbd5f8b7410dc47f60413 100644
--- a/runtime/bin/utils_fuchsia.cc
+++ b/runtime/bin/utils_fuchsia.cc
@@ -68,6 +68,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