--- a/src/allocator.c Sun Dec 29 15:24:20 2024 +0100 +++ b/src/allocator.c Sun Dec 29 16:56:13 2024 +0100 @@ -84,7 +84,7 @@ ) { void *nmem = realloc(*mem, n); if (nmem == NULL) { - return 1; + return 1; // LCOV_EXCL_LINE } else { *mem = nmem; return 0; @@ -104,7 +104,7 @@ } else { void *nmem = realloc(*mem, n); if (nmem == NULL) { - return 1; + return 1; // LCOV_EXCL_LINE } else { *mem = nmem; return 0; @@ -152,7 +152,7 @@ ) { void *nmem = allocator->cl->realloc(allocator->data, *mem, n); if (nmem == NULL) { - return 1; + return 1; // LCOV_EXCL_LINE } else { *mem = nmem; return 0; @@ -168,7 +168,7 @@ ) { void *nmem = cxReallocArray(allocator, *mem, nmemb, size); if (nmem == NULL) { - return 1; + return 1; // LCOV_EXCL_LINE } else { *mem = nmem; return 0;