summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/system.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c
index ce55e83d58..30f2ac6d00 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -1166,8 +1166,12 @@ int sys_popen(const char *command)
return -1;
}
- if (pipe(pipe_fds) < 0)
+ ret = pipe(pipe_fds);
+ if (ret < 0) {
+ DEBUG(0, ("sys_popen: error opening pipe: %s\n",
+ strerror(errno)));
return -1;
+ }
parent_end = pipe_fds[0];
child_end = pipe_fds[1];