Skip to content

Commit

Permalink
src: don't include a null character in the WriteConsoleW call
Browse files Browse the repository at this point in the history
Fixes: nodejs#7755
PR-URL: nodejs#7764
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
seishun authored and jasnell committed Aug 23, 2016
1 parent f7a23a2 commit 09f861f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,10 @@ static void PrintErrorString(const char* format, ...) {

std::vector<wchar_t> wbuf(n);
MultiByteToWideChar(CP_UTF8, 0, out.data(), -1, wbuf.data(), n);
WriteConsoleW(stderr_handle, wbuf.data(), n, nullptr, nullptr);

// Don't include the null character in the output
CHECK_GT(n, 0);
WriteConsoleW(stderr_handle, wbuf.data(), n - 1, nullptr, nullptr);
#else
vfprintf(stderr, format, ap);
#endif
Expand Down

0 comments on commit 09f861f

Please sign in to comment.