Age | Commit message (Collapse) | Author |
|
Resolved issue #24
|
|
|
|
|
|
|
|
|
|
Fix wrong error code if huffmanDecodeSymbol fail
|
|
|
|
|
|
|
|
The return value of huffmanDecodeSymbol is stored in code_d not code_ll,
code_ll is between 257 and 285 here.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixed crash on uncompressed PNG files.
|
|
When writing an uncompressed PNG, deflateDynamic erroneously indexed a newly allocated block of datasize length using the datapos offset. This would crash anytime datapos > 0.
|
|
|
|
|
|
Fix crash on PNG files with a single column of pixels.
|
|
|
|
Fix VS2015 compilation of pngdetail.
|
|
VS2015 can't find std::min/max without additional header.
|
|
|
|
|
|
|
|
|
|
|
|
fix typos
|
|
Credits go to the authors of 'codespell'.
|
|
fix typos
|
|
|
|
|
|
|