This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump Module-Pluggable VERSION following 4a28828fc8f160c18323be1125f0f8473bcd000f
[perl5.git] / perlio.c
index b935734..0a086a8 100644 (file)
--- a/perlio.c
+++ b/perlio.c
@@ -3033,7 +3033,9 @@ PerlIOStdio_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
        stdio = PerlSIO_fdopen(fd, PerlIO_modestr(o,mode));
     set_this:
        PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
-       PerlIOUnix_refcnt_inc(fileno(stdio));
+        if(stdio) {
+           PerlIOUnix_refcnt_inc(fileno(stdio));
+        }
     }
     return f;
 }