IPv6 fixes for incoming inetd calls, minors from lint

This commit is contained in:
zx
2024-06-25 23:05:07 +03:00
parent 3526bc5ece
commit 9aed37b92e
5 changed files with 24 additions and 15 deletions
+1
View File
@@ -81,6 +81,7 @@ void *xrealloc(void *buf, size_t size)
else if( (tmp = (char*)(buf ? realloc(buf, size) : malloc(size))) == NULL )
{
log("failed to reallocate %ld bytes -> abort", size);
if( buf ) free(buf);
abort();
}