aboutsummaryrefslogtreecommitdiff
path: root/lib/xwrap.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-08-07 12:19:51 -0500
committerRob Landley <rob@landley.net>2013-08-07 12:19:51 -0500
commit1aa75118c46c8fbe0eeead18974d25e5f13274d5 (patch)
tree643b500aa234d17a8fc5cf1dad8d61e6fbb5aeae /lib/xwrap.c
parent17ea5644d93ff1ced28d3602ac244cb6022f3ba6 (diff)
downloadtoybox-1aa75118c46c8fbe0eeead18974d25e5f13274d5.tar.gz
Forgot to check in xfdopen(). My bad.
Failure of fdopen() is most likely failure of malloc() for the FILE structure.
Diffstat (limited to 'lib/xwrap.c')
-rw-r--r--lib/xwrap.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c
index adf3e752..9f1dc996 100644
--- a/lib/xwrap.c
+++ b/lib/xwrap.c
@@ -172,6 +172,15 @@ int xdup(int fd)
return fd;
}
+FILE *xfdopen(int fd, char *mode)
+{
+ FILE *f = fdopen(fd, mode);
+
+ if (!f) perror_exit("xfdopen");
+
+ return f;
+}
+
// Die unless we can open/create a file, returning FILE *.
FILE *xfopen(char *path, char *mode)
{