summaryrefslogtreecommitdiff
path: root/src/string_decoder.cc
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2018-05-20 17:44:06 +0200
committerTobias Nießen <tniessen@tnie.de>2018-05-26 12:29:31 +0200
commit39f209649fc290fe92cc3b87edfffa6a854ecb03 (patch)
treee7c7c595355c3ce1dbd59d89070a7427572d256f /src/string_decoder.cc
parent13493e99bfd208bc6e5381a918384049384cc2ed (diff)
downloadandroid-node-v8-39f209649fc290fe92cc3b87edfffa6a854ecb03.tar.gz
android-node-v8-39f209649fc290fe92cc3b87edfffa6a854ecb03.tar.bz2
android-node-v8-39f209649fc290fe92cc3b87edfffa6a854ecb03.zip
src: add CHECK_NULL/CHECK_NOT_NULL macros
This change introduces CHECK_NULL and CHECK_NOT_NULL macros similar to their definition in v8 and replaces instances of CHECK/CHECK_EQ/CHECK_NE with these where it seems appropriate. PR-URL: https://github.com/nodejs/node/pull/20914 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'src/string_decoder.cc')
-rw-r--r--src/string_decoder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string_decoder.cc b/src/string_decoder.cc
index ad1bace918..dcc99a09f9 100644
--- a/src/string_decoder.cc
+++ b/src/string_decoder.cc
@@ -266,7 +266,7 @@ namespace {
void DecodeData(const FunctionCallbackInfo<Value>& args) {
StringDecoder* decoder =
reinterpret_cast<StringDecoder*>(Buffer::Data(args[0]));
- CHECK_NE(decoder, nullptr);
+ CHECK_NOT_NULL(decoder);
size_t nread = Buffer::Length(args[1]);
MaybeLocal<String> ret =
decoder->DecodeData(args.GetIsolate(), Buffer::Data(args[1]), &nread);
@@ -277,7 +277,7 @@ void DecodeData(const FunctionCallbackInfo<Value>& args) {
void FlushData(const FunctionCallbackInfo<Value>& args) {
StringDecoder* decoder =
reinterpret_cast<StringDecoder*>(Buffer::Data(args[0]));
- CHECK_NE(decoder, nullptr);
+ CHECK_NOT_NULL(decoder);
MaybeLocal<String> ret = decoder->FlushData(args.GetIsolate());
if (!ret.IsEmpty())
args.GetReturnValue().Set(ret.ToLocalChecked());