id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking	branch_state	votes
3856	comparison between pointer and zero character constant	egmont		"gcc-7.2 caught this:

{{{
  CC       boxes.lo
boxes.c: In function ‘jobs_fill_listbox’:
boxes.c:431:22: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (state_str[0] == '\0')
                      ^~
boxes.c:431:9: note: did you mean to dereference the pointer?
     if (state_str[0] == '\0')
         ^
}}}

It's indeed right, the code is buggy. It should be `state_str[0][0]`."	defect	closed	major	4.8.20	mc-core	master	fixed			3780		no branch	
