X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-perl%2Fclose.c;h=6e16a04daf7a8a7234d29b4894ad0b7fc36a4823;hb=04311cc7163ce54d63bd2e764c13d69ea1fce57b;hp=483f5dfeec40059fa959a633225ef783f69a4121;hpb=7127e0887cfd03f096ecf335b36d78fdb49815cd;p=openldap diff --git a/servers/slapd/back-perl/close.c b/servers/slapd/back-perl/close.c index 483f5dfeec..6e16a04daf 100644 --- a/servers/slapd/back-perl/close.c +++ b/servers/slapd/back-perl/close.c @@ -1,28 +1,22 @@ /* $OpenLDAP$ */ -/* - * Copyright 1999, John C. Quillan, All rights reserved. - * Portions Copyright 2002, myinternet pty ltd. All rights reserved. +/* This work is part of OpenLDAP Software . * - * Redistribution and use in source and binary forms are permitted only - * as authorized by the OpenLDAP Public License. A copy of this - * license is available at http://www.OpenLDAP.org/license.html or - * in file LICENSE in the top-level directory of the distribution. + * Copyright 1999-2011 The OpenLDAP Foundation. + * Portions Copyright 1999 John C. Quillan. + * Portions Copyright 2002 myinternet Limited. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ -#include "portable.h" -/* init.c - initialize shell backend */ - -#include -/* #include - #include -*/ - -#include -#include - -#include "slap.h" #include "perl_back.h" - +#include "../config.h" /********************************************************** * * Close @@ -34,22 +28,12 @@ perl_back_close( BackendInfo *bd ) { - ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex ); - - perl_destruct(perl_interpreter); - - ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex ); - - return 0; -} - -int -perl_back_destroy( - BackendInfo *bd -) -{ - perl_free(perl_interpreter); - perl_interpreter = NULL; + perl_destruct(PERL_INTERPRETER); + perl_free(PERL_INTERPRETER); + PERL_INTERPRETER = NULL; +#ifdef PERL_SYS_TERM + PERL_SYS_TERM(); +#endif ldap_pvt_thread_mutex_destroy( &perl_interpreter_mutex ); @@ -58,9 +42,18 @@ perl_back_destroy( int perl_back_db_destroy( - BackendDB *be + BackendDB *be, + ConfigReply *cr ) { + PerlBackend *pb = be->be_private; + + ch_free( pb->pb_module_name ); + ber_bvarray_free( pb->pb_module_path ); + ber_bvarray_free( pb->pb_module_config ); + free( be->be_private ); be->be_private = NULL; + + return 0; }