cc-1164 cc: WARNING File = lib/smbldap.c, Line = 270 Argument of type "const char *" is incompatible with parameter of type "void *" . SAFE_FREE( list[i] ); ^
SAFE_FREE expanded to: do { if ((list[i]) != 0L) {free(list[i]); list[i]=0L;} } while(0); In the function declared, void free_attr_list( const char **list )
Fixed in 16483 by applying -woff 1209.