aboutsummaryrefslogtreecommitdiff
path: root/editors/sed.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/sed.c')
-rw-r--r--editors/sed.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 8d9f7b25b..964d0405e 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -1370,9 +1370,7 @@ int sed_main(int argc UNUSED_PARAM, char **argv)
1370 } 1370 }
1371 1371
1372 G.outname = xasprintf("%sXXXXXX", argv[i]); 1372 G.outname = xasprintf("%sXXXXXX", argv[i]);
1373 nonstdoutfd = mkstemp(G.outname); 1373 nonstdoutfd = xmkstemp(G.outname);
1374 if (-1 == nonstdoutfd)
1375 bb_perror_msg_and_die("can't create temp file %s", G.outname);
1376 G.nonstdout = xfdopen_for_write(nonstdoutfd); 1374 G.nonstdout = xfdopen_for_write(nonstdoutfd);
1377 1375
1378 /* Set permissions/owner of output file */ 1376 /* Set permissions/owner of output file */