-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
P4
-
None
-
Affects Version/s: 7
-
Component/s: core-libs
-
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.