summaryrefslogtreecommitdiff
path: root/xmlmodule.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2005-10-28 08:44:48 +0000
committerDaniel Veillard <veillard@src.gnome.org>2005-10-28 08:44:48 +0000
commit1d96f5aa9762ee4ab7474224287a4c8d67e055f9 (patch)
treebf220e9534258e3084c26f0624319ad86b8a19c1 /xmlmodule.c
parentdbf7bfed8a7a185bc542ccf32858c07dea19afcc (diff)
downloadlibxml2-1d96f5aa9762ee4ab7474224287a4c8d67e055f9.tar.gz
applied 2 patches from Albert Chin for module portability Daniel
* xmlmodule.c configure.in: applied 2 patches from Albert Chin for module portability Daniel
Diffstat (limited to 'xmlmodule.c')
-rw-r--r--xmlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlmodule.c b/xmlmodule.c
index 6cc86ee6..a26089a7 100644
--- a/xmlmodule.c
+++ b/xmlmodule.c
@@ -277,7 +277,7 @@ xmlModulePlatformSymbol(void *handle, const char *name, void **symbol)
int rc;
errno = 0;
- rc = shl_findsym(handle, name, TYPE_PROCEDURE, symbol);
+ rc = shl_findsym(&handle, name, TYPE_PROCEDURE, symbol);
if ((-1 == rc) && (0 == errno)) {
rc = shl_findsym(handle, name, TYPE_DATA, symbol);
}