Task #133471 - added.err

back to task #133471
download
Error: GCC_ANALYZER_WARNING (CWE-476):
util-linux-2.43.devel/disk-utils/cfdisk.c: scope_hint: In function ‘ui_create_label’
util-linux-2.43.devel/disk-utils/cfdisk.c:2175:30: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘xcalloc(fdisk_get_nlabels(*cf.cxt) + 1, 32)’
util-linux-2.43.devel/include/debug.h:118:17: note: in expansion of macro ‘__UL_INIT_DEBUG_FROM_STRING’
util-linux-2.43.devel/disk-utils/cfdisk.c:270:9: note: in expansion of macro ‘__UL_INIT_DEBUG_FROM_ENV’
util-linux-2.43.devel/include/debug.h:118:17: note: in expansion of macro ‘__UL_INIT_DEBUG_FROM_STRING’
util-linux-2.43.devel/disk-utils/cfdisk.c:270:9: note: in expansion of macro ‘__UL_INIT_DEBUG_FROM_ENV’
util-linux-2.43.devel/include/debug.h:82:9: note: in expansion of macro ‘__UL_DBG_CALL’
util-linux-2.43.devel/include/debug.h:88:9: note: in expansion of macro ‘__UL_DBG_OBJ’
util-linux-2.43.devel/disk-utils/cfdisk.c:266:25: note: in expansion of macro ‘__UL_DBG’
util-linux-2.43.devel/disk-utils/cfdisk.c:2163:9: note: in expansion of macro ‘DBG’
# 2173|   		    fdisk_label_get_type(lb) == FDISK_DISKLABEL_BSD)
# 2174|   			continue;
# 2175|-> 		cm[i++].name = fdisk_label_get_name(lb);
# 2176|   	}
# 2177|   

Error: GCC_ANALYZER_WARNING (CWE-401):
util-linux-2.43.devel/agetty-cmd/issuefile.c:18: included_from: Included from here.
util-linux-2.43.devel/include/all-io.h: scope_hint: In function ‘__read_all’
util-linux-2.43.devel/include/all-io.h:91:1: warning[-Wanalyzer-malloc-leak]: leak of ‘*op.osrelease’
util-linux-2.43.devel/agetty-cmd/issuefile.c:64:21: note: in expansion of macro ‘ul_read_all’
util-linux-2.43.devel/agetty-cmd/issuefile.c:64:21: note: in expansion of macro ‘ul_read_all’
#   89|   	}
#   90|   	return c;
#   91|-> }
#   92|   
#   93|   #define ul_read_all(fd, buf, count)		__read_all(NULL, (fd), (buf), (count))

Error: GCC_ANALYZER_WARNING (CWE-401):
util-linux-2.43.devel/include/xalloc.h: scope_hint: In function ‘agetty_ifile_parse_stream’
util-linux-2.43.devel/include/xalloc.h:68:13: warning[-Wanalyzer-malloc-leak]: leak of ‘new_item((int)i, 0)’
util-linux-2.43.devel/include/c.h:23: included_from: Included from here.
util-linux-2.43.devel/include/list.h:15: included_from: Included from here.
util-linux-2.43.devel/agetty-cmd/issuefile-parser.h:11: included_from: Included from here.
util-linux-2.43.devel/agetty-cmd/issuefile-parser.c:15: included_from: Included from here.
util-linux-2.43.devel/agetty-cmd/issuefile-parser.c:9: included_from: Included from here.
util-linux-2.43.devel/agetty-cmd/issuefile-parser.c: scope_hint: In function ‘agetty_ifile_parse_stream’
#   66|   	void *ret = calloc(nelems, size);
#   67|   
#   68|-> 	if (!ret && size && nelems)
#   69|   		err(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
#   70|   	return ret;

Error: GCC_ANALYZER_WARNING (CWE-401):
util-linux-2.43.devel/agetty-cmd/issuefile-parser.c:19: included_from: Included from here.
util-linux-2.43.devel/include/xalloc.h: scope_hint: In function ‘flush_text.part.0’
util-linux-2.43.devel/include/xalloc.h:68:13: warning[-Wanalyzer-malloc-leak]: leak of ‘new_item(0, *buf)’
#   66|   	void *ret = calloc(nelems, size);
#   67|   
#   68|-> 	if (!ret && size && nelems)
#   69|   		err(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
#   70|   	return ret;

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:1096:28: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘xcalloc((long unsigned int)*ctl.months_in_row, 208)’
util-linux-2.43.devel/misc-utils/cal.c:76: included_from: Included from here.
# 1094|   
# 1095|   	for (i = 0; i < ctl->months_in_row - 1; i++)
# 1096|-> 		ms[i].next = &ms[i + 1];
# 1097|   
# 1098|   	rows = (ctl->num_months - 1) / ctl->months_in_row;