summaryrefslogtreecommitdiff
path: root/dso/unix
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-04-19 16:43:20 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-04-19 16:43:20 +0000
commit7e64a80b6fa3e034db2a92e559408e61e13ad4e2 (patch)
tree73dbb13bf37cb72f3d527c88904dc0c11b436db6 /dso/unix
parent883eb2bbf1d9074c9dfcc7c8bafd88d4a73c4618 (diff)
downloadlibapr-7e64a80b6fa3e034db2a92e559408e61e13ad4e2.tar.gz
store the pool handle in apr_os_dso_handle_put()
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61540 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/unix')
-rw-r--r--dso/unix/dso.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index 985f57fc5..04e8a964d 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -75,6 +75,7 @@ APR_DECLARE(apr_status_t) apr_os_dso_handle_put(apr_dso_handle_t **aprdso,
{
*aprdso = apr_pcalloc(pool, sizeof **aprdso);
(*aprdso)->handle = *osdso;
+ (*aprdso)->cont = pool;
return APR_SUCCESS;
}