summaryrefslogtreecommitdiffstats
path: root/contrib/openpam/lib/openpam_dynamic.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/openpam/lib/openpam_dynamic.c')
-rw-r--r--contrib/openpam/lib/openpam_dynamic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/openpam/lib/openpam_dynamic.c b/contrib/openpam/lib/openpam_dynamic.c
index a4f2867..fb0f3f5 100644
--- a/contrib/openpam/lib/openpam_dynamic.c
+++ b/contrib/openpam/lib/openpam_dynamic.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2002 Networks Associates Technologies, Inc.
+ * Copyright (c) 2002 Networks Associates Technology, Inc.
* All rights reserved.
*
* This software was developed for the FreeBSD Project by ThinkSec AS and
@@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $P4: //depot/projects/openpam/lib/openpam_dynamic.c#1 $
+ * $P4: //depot/projects/openpam/lib/openpam_dynamic.c#3 $
*/
#include <dlfcn.h>
@@ -64,15 +64,15 @@ openpam_dynamic(const char *path)
if (asprintf(&vpath, "%s.%d", path, LIB_MAJ) == -1)
goto buf_err;
if ((dlh = dlopen(vpath, RTLD_NOW)) == NULL) {
- openpam_log(PAM_LOG_ERROR, "dlopen(): %s", dlerror());
*strrchr(vpath, '.') = '\0';
if ((dlh = dlopen(vpath, RTLD_NOW)) == NULL) {
- openpam_log(PAM_LOG_ERROR, "dlopen(): %s", dlerror());
free(module);
return (NULL);
}
}
- module->path = vpath;
+ free(vpath);
+ if ((module->path = strdup(path)) == NULL)
+ goto buf_err;
module->dlh = dlh;
for (i = 0; i < PAM_NUM_PRIMITIVES; ++i)
module->func[i] = dlsym(dlh, _pam_sm_func_name[i]);
OpenPOWER on IntegriCloud