diff options
author | Jim McDonough <jmcd@samba.org> | 2003-01-17 21:23:14 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-01-17 21:23:14 +0000 |
commit | 1793c8f1432d152848adce7a0b255b6f431bbc31 (patch) | |
tree | e9f6494d6559783f24be32dc9599a7ec99647c49 /source3/lib/module.c | |
parent | 9eb368e068076f65083916573cf832988e216b59 (diff) | |
download | samba-1793c8f1432d152848adce7a0b255b6f431bbc31.tar.gz samba-1793c8f1432d152848adce7a0b255b6f431bbc31.tar.xz samba-1793c8f1432d152848adce7a0b255b6f431bbc31.zip |
dlsym() can return NULL validly, so we can't use that as the error test.
dlerror() is the correct way to test.
(This used to be commit 41b1be15bac271116a7096e511cc029685013e1f)
Diffstat (limited to 'source3/lib/module.c')
-rw-r--r-- | source3/lib/module.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c index 5ad64858064..6febe8a9f16 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -27,6 +27,7 @@ NTSTATUS smb_load_module(const char *module_name) void *handle; init_module_function *init; NTSTATUS nt_status; + const char *error; /* Always try to use LAZY symbol resolving; if the plugin has * backwards compatibility, there might be symbols in the @@ -41,8 +42,11 @@ NTSTATUS smb_load_module(const char *module_name) init = sys_dlsym(handle, "init_module"); - if(!init) { - DEBUG(0, ("Error trying to resolve symbol 'init_module' in %s: %s\n", module_name, sys_dlerror())); + /* we must check sys_dlerror() to determine if it worked, because + sys_dlsym() can validly return NULL */ + error = sys_dlerror(); + if (error) { + DEBUG(0, ("Error trying to resolve symbol 'init_module' in %s: %s\n", module_name, error)); return NT_STATUS_UNSUCCESSFUL; } |