[xmlsec] fix windows



commit e4ddcad9378e016995e068736a059bee4a92c93a
Author: Aleksey Sanin <aleksey aleksey com>
Date:   Sun May 9 14:12:45 2010 -0700

    fix windows

 src/dl.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/dl.c b/src/dl.c
index d6f37ef..f8f7caf 100644
--- a/src/dl.c
+++ b/src/dl.c
@@ -89,7 +89,7 @@ XMLSEC_PTR_TO_FUNC_IMPL(xmlSecCryptoGetFunctionsCallback)
 static xmlSecCryptoDLLibraryPtr
 xmlSecCryptoDLLibraryCreate(const xmlChar* name) {
     xmlSecCryptoDLLibraryPtr lib;
-    xmlSecCryptoGetFunctionsCallback * getFunctions;
+    xmlSecCryptoGetFunctionsCallback getFunctions;
 
     xmlSecAssert2(name != NULL, NULL);
 
@@ -209,7 +209,7 @@ xmlSecCryptoDLLibraryCreate(const xmlChar* name) {
         return(NULL);
     }
 
-    lib->functions = (*getFunctions)();
+    lib->functions = getFunctions();
     if(lib->functions == NULL) {
         xmlSecError(XMLSEC_ERRORS_HERE,
                     "getFunctions",



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]