Skip to content

Commit c96eca1

Browse files
cjihrigMyles Borins
authored and
Myles Borins
committed
src: don't print garbage errors
If JS throws an object whose toString() method throws, then Node attempts to print an empty message, but actually prints garbage. This commit checks for this case, and prints a message instead. Fixes: #4079 PR-URL: #4112 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
1 parent c9100d7 commit c96eca1

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

src/node.cc

+4-2
Original file line numberDiff line numberDiff line change
@@ -1548,8 +1548,10 @@ static void ReportException(Environment* env,
15481548
name.IsEmpty() ||
15491549
name->IsUndefined()) {
15501550
// Not an error object. Just print as-is.
1551-
node::Utf8Value message(env->isolate(), er);
1552-
PrintErrorString("%s\n", *message);
1551+
String::Utf8Value message(er);
1552+
1553+
PrintErrorString("%s\n", *message ? *message :
1554+
"<toString() threw exception>");
15531555
} else {
15541556
node::Utf8Value name_string(env->isolate(), name);
15551557
node::Utf8Value message_string(env->isolate(), message);

test/fixtures/throws_error7.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
throw {
2+
toString: function() {
3+
throw this;
4+
}
5+
};

test/parallel/test-error-reporting.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ function errExec(script, callback) {
2424

2525
// Count the tests
2626
exits++;
27-
28-
console.log('.');
2927
});
3028
}
3129

@@ -64,6 +62,11 @@ errExec('throws_error6.js', function(err, stdout, stderr) {
6462
assert.ok(/SyntaxError/.test(stderr));
6563
});
6664

65+
// Object that throws in toString() doesn't print garbage
66+
errExec('throws_error7.js', function(err, stdout, stderr) {
67+
assert.ok(/<toString\(\) threw exception/.test(stderr));
68+
});
69+
6770
process.on('exit', function() {
68-
assert.equal(6, exits);
71+
assert.equal(7, exits);
6972
});

0 commit comments

Comments
 (0)