mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
Fix OS::GetExecutablePath for platform_none
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user