fix popen not to leak pipes from one child to another
[musl] / src / stdio / vdprintf.c
index faf9536..3b9c093 100644 (file)
@@ -1,19 +1,11 @@
 #include "stdio_impl.h"
 
-static size_t wrap_write(FILE *f, const unsigned char *buf, size_t len)
+int vdprintf(int fd, const char *restrict fmt, va_list ap)
 {
-       return __stdio_write(f, buf, len);
-}
-
-int vdprintf(int fd, const char *fmt, va_list ap)
-{
-       int r;
-       unsigned char buf[BUFSIZ];
        FILE f = {
-               .fd = fd, .lbf = EOF, .write = wrap_write,
-               .buf = buf+UNGET, .buf_size = sizeof buf - UNGET,
+               .fd = fd, .lbf = EOF, .write = __stdio_write,
+               .buf = (void *)fmt, .buf_size = 0,
                .lock = -1
        };
-       r = vfprintf(&f, fmt, ap);
-       return fflush(&f) ? EOF : r;
+       return vfprintf(&f, fmt, ap);
 }