change logic to check for false instead of not true to fix coverity 1250328

This commit is contained in:
Vincent Sanders 2014-11-04 19:57:51 +00:00
parent c637cd04b1
commit d85b74fd72
2 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${PREFIX}/lib
export PATH=${PATH}:${PREFIX}/bin export PATH=${PATH}:${PREFIX}/bin
# Coverity tools location # Coverity tools location
COVERITY_PREFIX=${COVERITY_PREFIX:-/opt/coverity/cov-analysis-linux64-6.6.1} COVERITY_PREFIX=${COVERITY_PREFIX:-/opt/coverity/cov-analysis-linux64-7.0.2}
COVERITY_VERSION=$(git rev-parse HEAD) COVERITY_VERSION=$(git rev-parse HEAD)
export PATH=${PATH}:${COVERITY_PREFIX}/bin export PATH=${PATH}:${COVERITY_PREFIX}/bin

View File

@ -2222,10 +2222,10 @@ nserror nsurl_nice(const nsurl *url, char **result, bool remove_extensions)
/* extract the last component of the path, if possible */ /* extract the last component of the path, if possible */
if ((url->components.path != NULL) && if ((url->components.path != NULL) &&
lwc_string_length(url->components.path) != 0 && (lwc_string_length(url->components.path) != 0) &&
lwc_string_isequal(url->components.path, (lwc_string_isequal(url->components.path,
corestring_lwc_slash_, &match) == lwc_error_ok && corestring_lwc_slash_, &match) == lwc_error_ok) &&
match != true) { (match == false) {
bool first = true; bool first = true;
bool keep_looking; bool keep_looking;