|
Description
|
by inspection, streamio.c about line 8000: either mblk could be derefed when
NULL, or has a pointless test for NULL (and should assert non-NULL).
=====
if (mctl->b_datap->db_frtnp != NULL)
mp = dupmsg(mctl);
else
mp = copymsg(mctl);
if (mp != NULL || mctl == NULL)
break;
=====
|