[PATCH] test-skeleton: redirect stderr to stdout
Zack Weinberg
zackw@panix.com
Thu Jun 16 12:50:00 GMT 2016
On Thu, Jun 16, 2016 at 12:48 AM, Mike Frysinger <vapier@gentoo.org> wrote:
> + fclose (stderr);
> + dup2 (STDOUT_FILENO, STDERR_FILENO);
> + stderr = fdopen (STDERR_FILENO, "w");
Wouldn't the dup2 be sufficient by itself? And then you don't have to
worry about allocation failure in fdopen.
Also a setbuf(stderr, NULL) is probably appropriate.
zw
More information about the Libc-alpha
mailing list