Skip to content

Commit

Permalink
src: fix winapi_strerror error string
Browse files Browse the repository at this point in the history
Fixes: #23191
  • Loading branch information
huseyinacacak-janea committed Oct 2, 2024
1 parent d17fefc commit d8c6d70
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/api/exceptions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@ Local<Value> UVException(Isolate* isolate,
static const char* winapi_strerror(const int errorno, bool* must_free) {
char* errmsg = nullptr;

FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr,
errorno,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
reinterpret_cast<LPTSTR>(&errmsg),
0,
nullptr);
FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr,
errorno,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
reinterpret_cast<LPSTR>(&errmsg),
0,
nullptr);

if (errmsg) {
*must_free = true;
Expand Down
21 changes: 21 additions & 0 deletions test/parallel/test-print-GH-23191.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const child = require('child_process');

if (!common.isWindows) {
common.skip('This test is specific to Windows to test winapi_strerror');
}

// Ref: https://github.com/nodejs/node/issues/23191
// This test is specific to Windows.

const cp = child.spawn('pwd');

cp.on('exit', common.mustCall(function(code) {
try {
process._debugProcess(cp.pid);
} catch (error) {
assert.strictEqual(error.message, 'The system cannot find the file specified.');
}
}));

0 comments on commit d8c6d70

Please sign in to comment.