]> 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 4ad62899ecc4f5e25108892bef7d10c0ffa95c08..6e16a04daf7a8a7234d29b4894ad0b7fc36a4823 100644 (file)
@@ -1,33 +1,22 @@
 /* $OpenLDAP$ */
-/*
- * Copyright 1999-2003 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- */
-/*
- *      Copyright 1999, John C. Quillan, All rights reserved.
- *      Portions Copyright 2002, myinternet Limited. All rights reserved.
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * 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.
  *
- *      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.
+ * A copy of this license is available in file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
  */
 
-#include "portable.h"
-/* init.c - initialize shell backend */
-       
-#include <stdio.h>
-
-#include "slap.h"
-#ifdef HAVE_WIN32_ASPERL
-#include "asperl_undefs.h"
-#endif
-
-#include <EXTERN.h>
-#include <perl.h>
-
 #include "perl_back.h"
-
+#include "../config.h"
 /**********************************************************
  *
  * Close
@@ -39,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 );       
 
@@ -63,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;