summaryrefslogtreecommitdiff
path: root/file_io/unix
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-14 06:47:36 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-14 06:47:36 +0000
commit464177724ae9b769e214884993f124865017b2eb (patch)
treeb6cf7f01dd06394a4e317463d567bdc3165b888f /file_io/unix
parent301aea7411dae0b518eb21a4d5d3d06757fd3b26 (diff)
downloadlibapr-464177724ae9b769e214884993f124865017b2eb.tar.gz
Small cut and paste 'feature'. (Ok, can't be a feature if it doesn't even compile).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@584497 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/unix')
-rw-r--r--file_io/unix/pipe.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/file_io/unix/pipe.c b/file_io/unix/pipe.c
index 4735a278b..981170eaf 100644
--- a/file_io/unix/pipe.c
+++ b/file_io/unix/pipe.c
@@ -229,10 +229,8 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
{
apr_status_t status;
- if ((status = apr_file_pipe_create(in, out, attr->pool))
- != APR_SUCCESS) {
+ if ((status = apr_file_pipe_create(in, out, pool)) != APR_SUCCESS)
return status;
- }
switch (blocking) {
case APR_FULL_BLOCK: