Task #131801 - added.err

back to task #131801
download
Error: SHELLCHECK_WARNING:
/usr/libexec/libvirt-guests.sh:109:5: warning[SC3043]: In POSIX sh, 'local' is undefined.
#  107|       local uri="$1"
#  108|       local persistent="$2"
#  109|->     local list
#  110|   
#  111|       list="$(run_virsh_c "$uri" list --uuid $persistent)"

Error: SHELLCHECK_WARNING:
/usr/libexec/libvirt-guests.sh:135:5: warning[SC3043]: In POSIX sh, 'local' is undefined.
#  133|       local uri="$1"
#  134|       local uuid="$2"
#  135|->     local id
#  136|   
#  137|       guest_running="false"

Error: SHELLCHECK_WARNING:
/usr/libexec/libvirt-guests.sh:487:9: warning[SC3043]: In POSIX sh, 'local' is undefined.
#  485|           eval_gettext "Running guests on \$uri URI: "
#  486|   
#  487|->         local list
#  488|           list="$(list_guests "$uri")"
#  489|           if [ $? -eq 0 ]; then

Error: SHELLCHECK_WARNING:
/usr/libexec/libvirt-guests.sh:504:13: warning[SC3043]: In POSIX sh, 'local' is undefined.
#  502|   
#  503|           if "$persistent_only"; then
#  504|->             local transient
#  505|               transient="$(list_guests "$uri" "--transient")"
#  506|               if [ $? -eq 0 ]; then

Error: GCC_ANALYZER_WARNING (CWE-476):
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4375:17: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘snapshotsRet’
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4327:5: branch_false: following ‘false’ branch (when ‘__unsuppflags == 0’)...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4332:9: branch_false: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4332:8: branch_false: following ‘false’ branch...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4335:19: branch_false: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4337:8: branch_false: following ‘false’ branch...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4341:10: branch_false: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4350:8: branch_false: following ‘false’ branch (when ‘snaps’ is non-NULL)...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4353:8: branch_false: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4353:8: branch_false: following ‘false’ branch (when ‘count <= 0’)...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4368:5: branch_false: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4368:5: release_memory: ‘snapshotsRet’ is NULL
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4372:8: branch_true: following ‘true’ branch (when ‘ret < 0’)...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4372:8: branch_true: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4374:21: branch_true: following ‘true’ branch...
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4375:29: branch_true: ...to here
libvirt-12.5.0/src/hyperv/hyperv_driver.c:4375:17: danger: dereference of NULL ‘snapshotsRet + i * 8’
# 4373|           size_t i;
# 4374|           for (i = 0; i < count; i++) {
# 4375|->             if (snapshotsRet[i])
# 4376|                   virObjectUnref(snapshotsRet[i]);
# 4377|           }

Error: GCC_ANALYZER_WARNING (CWE-465):
libvirt-12.5.0/src/util/virobject.c:330:12: warning[-Wanalyzer-deref-before-check]: check of ‘klass’ for NULL after already dereferencing it
#  328|       PROBE_DEBUG(OBJECT_DISPOSE, "obj=%p classname=%s", gobj, klass->name);
#  329|   
#  330|->     while (klass) {
#  331|           if (klass->dispose)
#  332|               klass->dispose(obj);