From 93e0c6ae8997e0ded6013078efd0ccc652ca2595 Mon Sep 17 00:00:00 2001 From: ZYSzys <17367077526@163.com> Date: Mon, 4 Feb 2019 15:38:51 +0800 Subject: src: use NULL check macros to check nullptr PR-URL: https://github.com/nodejs/node/pull/25916 Refs: https://github.com/nodejs/node/pull/20914 Reviewed-By: Masashi Hirano Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Richard Lau --- src/node_union_bytes.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/node_union_bytes.h') diff --git a/src/node_union_bytes.h b/src/node_union_bytes.h index 66d8509bea..33fada7303 100644 --- a/src/node_union_bytes.h +++ b/src/node_union_bytes.h @@ -64,22 +64,22 @@ class UnionBytes { bool is_one_byte() const { return is_one_byte_; } const uint16_t* two_bytes_data() const { CHECK(!is_one_byte_); - CHECK_NE(two_bytes_, nullptr); + CHECK_NOT_NULL(two_bytes_); return two_bytes_; } const uint8_t* one_bytes_data() const { CHECK(is_one_byte_); - CHECK_NE(one_bytes_, nullptr); + CHECK_NOT_NULL(one_bytes_); return one_bytes_; } v8::Local ToStringChecked(v8::Isolate* isolate) const { if (is_one_byte_) { - CHECK_NE(one_bytes_, nullptr); + CHECK_NOT_NULL(one_bytes_); NonOwningExternalOneByteResource* source = new NonOwningExternalOneByteResource(one_bytes_, length_); return v8::String::NewExternalOneByte(isolate, source).ToLocalChecked(); } else { - CHECK_NE(two_bytes_, nullptr); + CHECK_NOT_NULL(two_bytes_); NonOwningExternalTwoByteResource* source = new NonOwningExternalTwoByteResource(two_bytes_, length_); return v8::String::NewExternalTwoByte(isolate, source).ToLocalChecked(); -- cgit v1.2.3