|
Unchecked return value from library
The function returns a value that indicates an error condition. If this is not checked, the error condition may not be handled correctly. Value returned from a library function is not checked for errors before being used. This value may indicate an error condition.
/src/mongo/db/storage/named_pipe_posix.cpp:52: CHECKED_RETURN 134259 Calling "remove(this->_pipeAbsolutePath.c_str())" without checking return value. This library function may fail and return an error code.
|