]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-perl/close.c
Fix entry_alloc with no attrs
[openldap] / servers / slapd / back-perl / close.c
index 8a4139a8ae9b8102de5d263e319ec473e524339b..6e16a04daf7a8a7234d29b4894ad0b7fc36a4823 100644 (file)
@@ -1,7 +1,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1999-2004 The OpenLDAP Foundation.
+ * Copyright 1999-2011 The OpenLDAP Foundation.
  * Portions Copyright 1999 John C. Quillan.
  * Portions Copyright 2002 myinternet Limited.
  * All rights reserved.
  * <http://www.OpenLDAP.org/license.html>.
  */
 
-#include <EXTERN.h>
-#include <perl.h>
-#undef _ /* #defined by both Perl and ac/localize.h */
-
-#ifdef HAVE_WIN32_ASPERL
-#include "asperl_undefs.h"
-#endif
-
-#include "portable.h"
-       
-#include <stdio.h>
-
-#include "slap.h"
-
 #include "perl_back.h"
-
+#include "../config.h"
 /**********************************************************
  *
  * Close
@@ -42,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;
+#ifdef PERL_SYS_TERM
+       PERL_SYS_TERM();
+#endif
 
        ldap_pvt_thread_mutex_destroy( &perl_interpreter_mutex );       
 
@@ -66,9 +42,16 @@ 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;