Skip to content

Commit 214b514

Browse files
evanlucasMylesBorins
authored andcommitted
src: use ABORT() macro instead of abort()
This makes sure that we dump a backtrace and use raise(SIGABRT) on Windows. PR-URL: #9613 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent ada7166 commit 214b514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_crypto.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ static X509_STORE* NewRootCertStore() {
700700

701701
if (x509 == nullptr) {
702702
// Parse errors from the built-in roots are fatal.
703-
abort();
703+
ABORT();
704704
return nullptr;
705705
}
706706

0 commit comments

Comments
 (0)