CCache: Fix typo in null check

This commit is contained in:
Amarnath Valluri 2016-06-17 13:28:09 +03:00
commit 6234ebd486

View file

@ -490,7 +490,7 @@ void x_asprintf(char **ptr, const char *format, ...)
}
va_end(ap);
if (!ptr) fatal("out of memory in x_asprintf");
if (!*ptr) fatal("out of memory in x_asprintf");
}
/*