X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fxmalloc.c;h=ce7852aafe3ccc86899d433c7452debbfb6cb329;hb=113640450c45ca7ac96285cc8ca666bfd597ed21;hp=5d6156484049a95389dc5ab846f1eabbbca4e94a;hpb=b6e8efd1bc9032260c1f30418f505f17ed2f4472;p=yaz-moved-to-github.git diff --git a/util/xmalloc.c b/util/xmalloc.c index 5d61564..ce7852a 100644 --- a/util/xmalloc.c +++ b/util/xmalloc.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: xmalloc.c,v $ - * Revision 1.3 1995-12-05 15:08:44 adam + * Revision 1.4 1996-07-03 13:21:36 adam + * Function xfree_f checks for NULL pointer. + * + * Revision 1.3 1995/12/05 15:08:44 adam * Fixed verbose of xrealloc. * * Revision 1.2 1995/12/05 11:08:37 adam @@ -98,6 +101,8 @@ char *xstrdup_f (const char *s, char *file, int line) void xfree_f(void *p, char *file, int line) { + if (!p) + return ; #ifdef TRACE_XMALLOC if (p) fprintf(stderr, "%s:%d: xfree %p\n", file, line, p);