summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-08-02 03:15:56 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-08-02 03:15:56 +0000
commit8da8cf9fb3b14bf5f77a422031773fdcaead27c2 (patch)
treebe020b21e2fc03c7a5627f31a42f9027e656cd9b /dso
parentb9ed26b243e7f133b7ba6b66306377006828aac3 (diff)
downloadlibapr-8da8cf9fb3b14bf5f77a422031773fdcaead27c2.tar.gz
Warning Will Robinson, someone's about to trounce you
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62079 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/win32/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/win32/dso.c b/dso/win32/dso.c
index 15ffed1a4..cdff9c299 100644
--- a/dso/win32/dso.c
+++ b/dso/win32/dso.c
@@ -115,7 +115,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(struct apr_dso_handle_t **res_handle,
os_handle = LoadLibraryEx(path, NULL, 0);
SetErrorMode(em);
}
- *res_handle = apr_pcalloc(ctx, sizeof(*res_handle));
+ *res_handle = apr_pcalloc(ctx, sizeof(**res_handle));
if(os_handle == NULL) {
(*res_handle)->load_error = apr_get_os_error();