Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tools/tiff2ps.c
Original file line number Diff line number Diff line change
Expand Up @@ -2964,7 +2964,9 @@ tsize_t Ascii85EncodeBlock( uint8 * ascii85_p, unsigned f_eod, const uint8 * raw

if ( val32 == 0 ) /* Special case */
{
ascii85_p[ascii85_l] = 'z';
if(ascii85_p != NULL) {
ascii85_p[ascii85_l] = 'z';
}
rc = 1;
}

Expand Down
1 change: 0 additions & 1 deletion tools/tiffcrop.c
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,6 @@ static int readContigTilesIntoBuffer (TIFF* in, uint8* buf,
return 1;
}
}
prev_trailing_bits += trailing_bits;
/* if (prev_trailing_bits > 7) */
/* prev_trailing_bits-= 8; */
}
Expand Down