Description of problem: [lib/libadminutil/psetc.c:201]: (warning) Char literal compared with pointer 'target.attrName'. Did you intend to dereference it? Source code is if (target->attrName && target->attrName != '\0') PR_Free(target->attrName); Maybe better source code if (target->attrName && target->attrName[0] != '\0') PR_Free(target->attrName);
This change is done in lib/libadminutil/psetc.c line number 201. I have observed this line of code occurs twice in the file, but the first occurrence of mentioned code at line 121 is already correct with pointer value. Hence marking the bug as VERIFIED.
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHBA-2016-2665.html