diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2003-11-17 19:54:08 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2003-11-17 19:54:08 +0000 |
commit | 681d6e952388902932102c60c38248b954e761b5 (patch) | |
tree | 178a2930f1c4466ea0b5193d9d3af70912f96ea6 /file_io | |
parent | 96a8751ef1c85a5eeae47ad6f10b18e74f324655 (diff) | |
download | libapr-681d6e952388902932102c60c38248b954e761b5.tar.gz |
There were no 'cont'-named pool objects, simple copy-n-paste bug.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64770 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r-- | file_io/win32/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/open.c b/file_io/win32/open.c index 76a9388c1..50a5ce66f 100644 --- a/file_io/win32/open.c +++ b/file_io/win32/open.c @@ -438,7 +438,7 @@ APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **new, const char *fname, /* Create a pollset with room for one descriptor. */ /* ### check return codes */ - (void) apr_pollset_create(&(*new)->pollset, 1, cont, 0); + (void) apr_pollset_create(&(*new)->pollset, 1, pool, 0); if (!(flag & APR_FILE_NOCLEANUP)) { apr_pool_cleanup_register((*new)->pool, (void *)(*new), file_cleanup, |