X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fxmalloc.c;h=1dec2193a14e7546e62d690588cc037496b424ba;hp=db7c1f2a831f38b45a85389dce6f51ad9d347b9f;hb=e3e6a89b0ebc5270208139c22d68735ee6626a19;hpb=92deb3cc5d606ce01697f80ae234dc8019954f69 diff --git a/src/xmalloc.c b/src/xmalloc.c index db7c1f2..1dec219 100644 --- a/src/xmalloc.c +++ b/src/xmalloc.c @@ -269,8 +269,8 @@ void *xrealloc_f(void *o, size_t size, const char *file, int line) "%s:%d: xrealloc(s=%ld) %p -> %p", file, line, (long) size, o, p); if (!p) { - yaz_log(YLOG_FATAL|YLOG_ERRNO, "Out of memory, realloc (%ld bytes)", - (long) size); + yaz_log(YLOG_FATAL, "%s:%d: Out of memory, realloc(%ld bytes)", + file, line, (long) size); xmalloc_fatal(size); } return p; @@ -292,8 +292,8 @@ void *xmalloc_f(size_t size, const char *file, int line) if (!p) { - yaz_log(YLOG_FATAL, "Out of memory - malloc (%ld bytes)", - (long) size); + yaz_log(YLOG_FATAL, "%s:%d: Out of memory - malloc(%ld bytes)", + file, line, (long) size); xmalloc_fatal(size); } return p; @@ -314,8 +314,8 @@ void *xcalloc_f(size_t nmemb, size_t size, const char *file, int line) if (!p) { - yaz_log(YLOG_FATAL, "Out of memory - calloc (%ld, %ld)", - (long) nmemb, (long) size); + yaz_log(YLOG_FATAL, "%s:%d: Out of memory - calloc(%ld, %ld)", + file, line, (long) nmemb, (long) size); xmalloc_fatal(size); } return p;