Line 355 of cramfsck.c is:
die(FSCK_UNCORRECTED, 0, "decompression error %p(%d): %s", zError(err), src, len);
Must be:
die(FSCK_UNCORRECTED, 0, "decompression error %p(%d): %s", src, len, zError(err))
I re-found this bug while fuzzing cramfsck, your fix works. Unfortunately it seems development is dead.
In case this is useful for others: I'll attach a test case and a diff file.
Log in to post a comment.
I re-found this bug while fuzzing cramfsck, your fix works. Unfortunately it seems development is dead.
In case this is useful for others: I'll attach a test case and a diff file.