Message-ID: <
20060406143250.5a7de4b8@grubert.mandriva.com>
p4raw-id: //depot/perl@27731
if (!len) {
SV ** const valp = hv_fetch(GvHVn(PL_envgv), ptr, klen, FALSE);
if (valp)
- s = SvPV_const(*valp, len);
+ s = SvOK(*valp) ? SvPV_const(*valp, len) : "";
}
#endif