Fix OS::GetExecutablePath for platform_none

This commit is contained in:
Ryan Dahl
2010-11-16 03:06:18 +00:00
parent 8b1082825c
commit 00a1d61cc8
2 changed files with 2 additions and 2 deletions

View File

@@ -1648,7 +1648,7 @@ static void Load(int argc, char *argv[]) {
// as a last ditch effort, fallback on argv[0] ?
process->Set(String::NewSymbol("execPath"), String::New(argv[0]));
} else {
process->Set(String::NewSymbol("execPath"), String::New(execPath));
process->Set(String::NewSymbol("execPath"), String::New(execPath, size));
}

View File

@@ -30,7 +30,7 @@ int OS::GetMemory(size_t *rss, size_t *vsize) {
int OS::GetExecutablePath(char *buffer, size_t* size) {
*size = 0;
return 0;
return -1;
}
} // namespace node