From d6ef4a470f5ba8b7b36d39cd1cb2418d58257fc0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 22 May 2012 13:39:24 -0400 Subject: [PATCH] fix cleanup on error --- pee.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pee.c b/pee.c index cd3ff20..a8565c0 100644 --- a/pee.c +++ b/pee.c @@ -40,7 +40,7 @@ main(int argc, char **argv) { pipes[i - 1] = popen(argv[i], "w"); if (!pipes[i - 1]) { fprintf(stderr, "Can not open pipe to '%s\'\n", argv[i]); - close_pipes(pipes, i); + close_pipes(pipes, argc); exit(EXIT_FAILURE); } @@ -52,7 +52,7 @@ main(int argc, char **argv) { for(i = 0; i < argc; i++) { if (fwrite(buf, sizeof(char), r, pipes[i]) != r) { fprintf(stderr, "Write error to `%s\'\n", argv[i + 1]); - close_pipes(pipes, i); + close_pipes(pipes, argc); exit(EXIT_FAILURE); } } -- 2.39.5