Task #119282 - fixed.err

back to task #119282
download
Error: COMPILER_WARNING (CWE-704):
passt-386b5f5472b89769c025f5d5056348532a823b93/conf.c: scope_hint: In function ‘next_chunk’
passt-386b5f5472b89769c025f5d5056348532a823b93/conf.c:78:21: warning[-Wdiscarded-qualifiers]: initialization discards ‘const’ qualifier from pointer target type
#   78 |         char *sep = strchr(s, c);
#      |                     ^~~~~~
#   76|   static char *next_chunk(const char *s, char c)
#   77|   {
#   78|-> 	char *sep = strchr(s, c);
#   79|   	return sep ? sep + 1 : NULL;
#   80|   }

Error: COMPILER_WARNING (CWE-704):
passt-386b5f5472b89769c025f5d5056348532a823b93/conf.c: scope_hint: In function ‘conf_runas’
passt-386b5f5472b89769c025f5d5056348532a823b93/conf.c:1251:21: warning[-Wdiscarded-qualifiers]: initialization discards ‘const’ qualifier from pointer target type
# 1251 |         char *sep = strchr(opt, ':');
#      |                     ^~~~~~
# 1249|   {
# 1250|   	const char *uopt, *gopt = NULL;
# 1251|-> 	char *sep = strchr(opt, ':');
# 1252|   	char *endptr;
# 1253|