diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-08 12:52:28 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-08 12:52:28 +0000 |
commit | 60fa28ff167ee89aee5425de954aa6183c50b55a (patch) | |
tree | 480657b809ab47023e4a6a9eae68ecd68f5ca88b /sv.c | |
parent | e84ff256a2982e8c96a05c380a48c0d1a6cb3af9 (diff) | |
download | perl-60fa28ff167ee89aee5425de954aa6183c50b55a.tar.gz |
fork() failure to create pseudo process sets errno=EAGAIN and returns
undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
p4raw-id: //depot/perl@6093
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3467,7 +3467,7 @@ Perl_sv_insert(pTHX_ SV *bigstr, STRLEN offset, STRLEN len, char *little, STRLEN if (!bigstr) Perl_croak(aTHX_ "Can't modify non-existent substring"); SvPV_force(bigstr, curlen); - SvPOK_only_UTF8(bigstr); + (void)SvPOK_only_UTF8(bigstr); if (offset + len > curlen) { SvGROW(bigstr, offset+len+1); Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char); |