Closed simnim closed 11 years ago
Line 441: out_fn = malloc_or_die(fnlen + 1);
Change it to: out_fn = malloc_or_die(fnlen + 4);
Since you write 3 extra bytes off the end of the buffer: ".qp" (aside from the '\0') when you compress a fastq file.
Thanks very much for that!
Line 441: out_fn = malloc_or_die(fnlen + 1);
Change it to: out_fn = malloc_or_die(fnlen + 4);
Since you write 3 extra bytes off the end of the buffer: ".qp" (aside from the '\0') when you compress a fastq file.