From 2f480015741223b10de56e1ac74ec0327dc2b636 Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Tue, 15 Nov 2016 05:29:38 -0600 Subject: [PATCH] src: use ABORT() macro instead of abort() This makes sure that we dump a backtrace and use raise(SIGABRT) on Windows. PR-URL: https://github.com/nodejs/node/pull/9613 Reviewed-By: Ben Noordhuis Reviewed-By: Colin Ihrig --- src/node_crypto.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index c5f5871617c222..2573035d9efb8f 100644 --- a/src/node_crypto.cc +++ b/src/node_crypto.cc @@ -715,7 +715,7 @@ static X509_STORE* NewRootCertStore() { if (x509 == nullptr) { // Parse errors from the built-in roots are fatal. - abort(); + ABORT(); return nullptr; }