Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Dawson <mdawson@devrus.com>2022-03-10 00:21:52 +0300
committerMichael Dawson <mdawson@devrus.com>2022-03-15 00:58:12 +0300
commit6d0e92a9d6fc79dcfcb40819718447557b414e0f (patch)
tree98e3bd79c02a1c4bbf2f515d91aad3167f72d7ed /src
parentf524306077e1f6a3096e43f3e11179264f49f112 (diff)
src: fix coverity warnings in node_file.cc
Fix two warnings about a useless call and not checking a return value. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/42272 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/node_file.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_file.cc b/src/node_file.cc
index 115a9fc9bfc..105ed4c4150 100644
--- a/src/node_file.cc
+++ b/src/node_file.cc
@@ -277,13 +277,13 @@ inline void FileHandle::Close() {
detail.fd);
if (env->filehandle_close_warning()) {
env->set_filehandle_close_warning(false);
- ProcessEmitDeprecationWarning(
+ USE(ProcessEmitDeprecationWarning(
env,
"Closing a FileHandle object on garbage collection is deprecated. "
"Please close FileHandle objects explicitly using "
"FileHandle.prototype.close(). In the future, an error will be "
"thrown if a file descriptor is closed during garbage collection.",
- "DEP0137").IsNothing();
+ "DEP0137"));
}
}, CallbackFlags::kUnrefed);
}