From: Hallvard Furuseth Date: Fri, 20 Nov 1998 11:40:06 +0000 (+0000) Subject: Don't use the `return value' from void free() X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~1072 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=71ad63f926858940ebbcd5b98626b2eeeb1d0482;p=openldap Don't use the `return value' from void free() --- diff --git a/clients/ud/util.c b/clients/ud/util.c index bb8a63f5e4..8b803e8c71 100644 --- a/clients/ud/util.c +++ b/clients/ud/util.c @@ -578,7 +578,7 @@ Malloc( unsigned int size ) void Free( void *ptr ) { -#ifndef STDC_HEADERS +#if 0 if (free(ptr) < 0) { perror("free"); exit(-1);