-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
7
-
generic
-
generic
if (pmsg != 0) {
*pmsg = NULL;
}
...
if (zip == NULL && *pmsg == NULL) {
pmsg can be passed in as NULL and then dereferenced.
*pmsg = NULL;
}
...
if (zip == NULL && *pmsg == NULL) {
pmsg can be passed in as NULL and then dereferenced.