Task #105136 - added.err
back to task #105136download
Error: GCC_ANALYZER_WARNING (CWE-476):
util-linux-2.43.devel/disk-utils/fdformat.c: scope_hint: In function ‘verify_disk’
util-linux-2.43.devel/disk-utils/fdformat.c:129:49: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘xmalloc(track_size) + count’
util-linux-2.43.devel/disk-utils/fdformat.c:28: included_from: Included from here.
# 127| }
# 128| for (count = 0; count < track_size; count++)
# 129|-> if (data[count] != FD_FILL_BYTE) {
# 130| if (retries_left) {
# 131| format_begin(ctrl);
Error: GCC_ANALYZER_WARNING (CWE-401):
util-linux-2.43.devel/libblkid/src/devname.c: scope_hint: In function 'blkid_get_dev'
util-linux-2.43.devel/libblkid/src/devname.c:80:48: warning[-Wanalyzer-malloc-leak]: leak of 'strdup(devname)'
util-linux-2.43.devel/libblkid/src/blkidP.h:34: included_from: Included from here.
util-linux-2.43.devel/libblkid/src/devname.c:37: included_from: Included from here.
util-linux-2.43.devel/libblkid/src/blkidP.h:355:25: note: in expansion of macro '__UL_DBG'
util-linux-2.43.devel/libblkid/src/devname.c:420:9: note: in expansion of macro 'DBG'
util-linux-2.43.devel/libblkid/src/devname.c:42: included_from: Included from here.
util-linux-2.43.devel/libblkid/src/blkidP.h:355:25: note: in expansion of macro '__UL_DBG'
util-linux-2.43.devel/libblkid/src/devname.c:494:25: note: in expansion of macro 'DBG'
util-linux-2.43.devel/libblkid/src/blkidP.h:355:25: note: in expansion of macro '__UL_DBG'
util-linux-2.43.devel/libblkid/src/devname.c:494:25: note: in expansion of macro 'DBG'
util-linux-2.43.devel/libblkid/src/blkidP.h:36: included_from: Included from here.
util-linux-2.43.devel/libblkid/src/devname.c:60:9: note: in expansion of macro 'list_for_each'
util-linux-2.43.devel/libblkid/src/blkidP.h:355:25: note: in expansion of macro '__UL_DBG'
util-linux-2.43.devel/libblkid/src/devname.c:71:25: note: in expansion of macro 'DBG'
util-linux-2.43.devel/libblkid/src/blkidP.h:355:25: note: in expansion of macro '__UL_DBG'
util-linux-2.43.devel/libblkid/src/devname.c:71:25: note: in expansion of macro 'DBG'
util-linux-2.43.devel/libblkid/src/devname.c:72:25: note: in expansion of macro 'list_for_each'
util-linux-2.43.devel/libblkid/src/devname.c:72:25: note: in expansion of macro 'list_for_each'
# 78| /* update name returned by blkid_dev_devname() */
# 79| free(dev->bid_xname);
# 80|-> dev->bid_xname = strdup(devname);
# 81| break;
# 82| }
Error: GCC_ANALYZER_WARNING (CWE-476):
util-linux-2.43.devel/misc-utils/cal.c: scope_hint: In function ‘monthly’
util-linux-2.43.devel/misc-utils/cal.c:1099:28: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘xcalloc((long unsigned int)*ctl.months_in_row, 208) + (sizetype)i * 208’
util-linux-2.43.devel/misc-utils/cal.c:79: included_from: Included from here.
# 1097|
# 1098| for (i = 0; i < ctl->months_in_row - 1; i++)
# 1099|-> ms[i].next = &ms[i + 1];
# 1100|
# 1101| rows = (ctl->num_months - 1) / ctl->months_in_row;