]> git.saurik.com Git - apple/libc.git/blobdiff - stdio/FreeBSD/funopen.c
Libc-1081.1.3.tar.gz
[apple/libc.git] / stdio / FreeBSD / funopen.c
index 64a56f261a56ded4c1808ab2dc552b2017384cce..408f0f42e2147e4f080743ba5e59608a8b9259b9 100644 (file)
@@ -63,7 +63,8 @@ funopen(const void *cookie,
                else
                        flags = __SRW;          /* read-write */
        }
-       if ((fp = __sfp()) == NULL)
+       /* funopen in not covered in SUSv3, so never count the streams */
+       if ((fp = __sfp(0)) == NULL)
                return (NULL);
        fp->_flags = flags;
        fp->_file = -1;