]> git.sur5r.net Git - openldap/blobdiff - servers/slurpd/ch_malloc.c
Rework test suite to use run script.
[openldap] / servers / slurpd / ch_malloc.c
index 1c6e29290b8f06b8aae8c3802b5c6a9e5e99ac2a..2b42ab266329b1023ddcfe053e37423f789e78c6 100644 (file)
@@ -1,4 +1,8 @@
 /* $OpenLDAP$ */
+/*
+ * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 /*
  * Copyright (c) 1996 Regents of the University of Michigan.
  * All rights reserved.
@@ -105,6 +109,25 @@ ch_calloc(
        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.