Task #108510 - added.err

back to task #108510
download
Error: CPPCHECK_WARNING (CWE-398):
avahi-0.9.rc4/avahi-daemon/ini-file-parser.c:100: style[redundantCondition]: Redundant condition: stat_ret==0. 'stat_ret!=0 || (stat_ret==0 && S_ISDIR(statbuf.st_mode))' is equivalent to 'stat_ret!=0 || S_ISDIR(statbuf.st_mode)'
#   98|           /* if stat() returns non-zero, assume dir, meaning ignore file */
#   99|           stat_ret = stat(full_path, &statbuf);
#  100|->         if ((stat_ret != 0) || (stat_ret == 0 && S_ISDIR(statbuf.st_mode)))
#  101|   #endif
#  102|               is_dir = 1;