]> git.sur5r.net Git - openldap/blobdiff - servers/slurpd/ch_malloc.c
Listener commit broke test048, skip listener check on Hidden DBs
[openldap] / servers / slurpd / ch_malloc.c
index 9f119825fa8cd0774c119c79d320de6e826b65c8..7532fbe4dc3e4d121c416e7d0c030bc087a6e761 100644 (file)
@@ -1,5 +1,18 @@
-/*
- * Copyright (c) 1996 Regents of the University of Michigan.
+/* $OpenLDAP$ */
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2007 The OpenLDAP Foundation.
+ * 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
+ * <http://www.OpenLDAP.org/license.html>.
+ */
+/* Portions Copyright (c) 1996 Regents of the University of Michigan.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms are permitted
@@ -9,6 +22,12 @@
  * software without specific prior written permission. This software
  * is provided ``as is'' without express or implied warranty.
  */
+/* ACKNOWLEDGEMENTS:
+ * This work was originally developed by the University of Michigan
+ * (as part of U-MICH LDAP).
+ */
+
+#define CH_FREE 1
 
 /*
  * ch_malloc.c - malloc() and friends, with check for NULL return.
@@ -24,6 +43,7 @@
 #include "../slapd/slap.h"
 
 
+#ifndef CSRIMALLOC
 
 /*
  * Just like malloc, except we check the returned value and exit
@@ -39,7 +59,7 @@ ch_malloc(
        if ( (new = (void *) ber_memalloc( size )) == NULL ) {
                fprintf( stderr, "malloc of %lu bytes failed\n",
                        (long) size );
-               exit( 1 );
+               exit( EXIT_FAILURE );
        }
 
        return( new );
@@ -71,7 +91,7 @@ ch_realloc(
        if ( (new = (void *) ber_memrealloc( block, size )) == NULL ) {
                fprintf( stderr, "realloc of %lu bytes failed\n",
                        (long) size );
-               exit( 1 );
+               exit( EXIT_FAILURE );
        }
 
        return( new );
@@ -95,12 +115,31 @@ ch_calloc(
        if ( (new = (void *) ber_memcalloc( nelem, size )) == NULL ) {
                fprintf( stderr, "calloc of %lu elems of %lu bytes failed\n",
                    (long) nelem, (long) size );
-               exit( 1 );
+               exit( EXIT_FAILURE );
        }
 
        return( new );
 }
 
+/*
+ * Just like strdup, except we check the returned value and exit
+ * if anything goes wrong.
+ */
+char *
+ch_strdup(
+    const char *string
+)
+{
+       char    *new;
+
+       if ( (new = ber_strdup( string )) == NULL ) {
+               fprintf( stderr, "ch_strdup: duplication of \"%s\" failed\n",
+                               string );
+               exit( EXIT_FAILURE );
+       }
+
+       return( new );
+}
 
 /*
  * Just like free, except we check to see if p is null.
@@ -116,3 +155,4 @@ ch_free(
     return;
 }
 
+#endif