summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix bounds checking in RLE decodeVincent Sanders2016-08-131-5/+10
|
* Add AFL demo bitmap and icon corpus to unit testsVincent Sanders2016-08-13968-1/+21
|
* Improve test runner and prevent generation of excessively large outputVincent Sanders2016-08-122-10/+70
|
* add tests for problematic bitmapsVincent Sanders2016-08-112-0/+7
| | | | mantis 2446 has a problematic bitmap we can use to test with
* move library usage documentation into a README fileVincent Sanders2016-08-112-58/+62
|
* Update Component version for releaserelease/0.1.3Vincent Sanders2015-12-181-2/+2
|
* Range check colour table accesses.John-Mark Bell2015-11-202-5/+26
| | | | Issue-reported-by: Hans Jerry Illikainen
* Fix pixels_left calculation in RLE decoding.John-Mark Bell2015-11-202-5/+6
| | | | | | | Additionally, improve input data range check for RLE4 absolute mode. Issue-reported-by: Hans Jerry Illikainen
* Trivial spelling fixJohn-Mark Bell2015-11-201-1/+1
|
* test decoding of ico filesVincent Sanders2015-09-021-3/+3
|
* add decode test suiteVincent Sanders2015-09-0152-0/+35
|
* Caused a syntax error in previous commit while altering CFLAGSVincent Sanders2015-03-221-1/+1
|
* Update CFLAGS to avoid deprication warning for glibc 2.21 and later.Vincent Sanders2015-03-221-2/+10
|
* Fix paths for Haiku.Adrien Destugues2015-03-222-2/+2
|
* Update the component version for releaserelease/0.1.2Vincent Sanders2015-03-081-1/+1
|
* Fix up for new buildsystemJohn-Mark Bell2014-11-161-1/+1
|
* We don't need read_int8 right nowDaniel Silverstone2014-08-291-0/+2
|
* Update component version for releaserelease/0.1.1Vincent Sanders2014-04-181-1/+1
|
* Add support for multilibJohn-Mark Bell2014-01-132-3/+3
|
* update component version for releaserelease/0.1.0Vincent Sanders2013-04-191-1/+1
|
* add a .gitattributes so .gitignore is not exportedVincent Sanders2013-04-181-0/+2
|
* Remove suspend/invalidate stuff.Michael Drake2012-10-144-61/+0
|
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-292-3/+5
| | | | svn path=/trunk/libnsbmp/; revision=14008
* Simple gitignoreDaniel Silverstone2012-06-041-0/+2
| | | | svn path=/trunk/libnsbmp/; revision=13952
* Bump versionJohn Mark Bell2011-04-071-1/+1
| | | | svn path=/trunk/libnsbmp/; revision=12170
* Squash warning about comparison between signed and unsigned values.Michael Drake2010-12-171-1/+3
| | | | svn path=/trunk/libnsbmp/; revision=11084
* Fix bug #3128147: range check bitmap data size and header offset in .ico ↵John Mark Bell2010-12-161-0/+11
| | | | | | handling svn path=/trunk/libnsbmp/; revision=11072
* Correct arg nameChris Young2010-11-191-1/+2
| | | | | | Include stddef.h as it typedefs size_t svn path=/trunk/libnsbmp/; revision=10945
* Bump versionJohn Mark Bell2010-04-191-1/+1
| | | | svn path=/trunk/libnsbmp/; revision=10441
* Fix ICO decoding on big-endian platforms.Chris Young2009-12-191-1/+4
| | | | svn path=/trunk/libnsbmp/; revision=9741
* -Wextra is only understood by GCC 3.4.6 or later. John Mark Bell2009-11-061-3/+4
| | | | | | | | | | | | | | | | It is a more descriptive synonym for -W. Use -W instead which is understood by all common versions of GCC (i.e. GCC 2.95 supports it, which is the oldest GCC version we have to support) Additionally, conditionalise our -Werror usage on whether we're building for BeOS/Haiku. On these platforms, the standard library headers result in warnings. GCC 2 is quite happy to build this code on other platforms, so shouldn't be the trigger for dropping -Werror (even if BeOS is the only target where GCC2 is likely to be used). svn path=/trunk/libnsbmp/; revision=9666
* Ensure local include path overrides buildsystem settings.John Mark Bell2009-08-011-2/+2
| | | | svn path=/trunk/libnsbmp/; revision=8962
* "Improve" broken-looking inverse height calculation. This probably regresses ↵John Mark Bell2009-05-271-2/+1
| | | | | | something but someone needs to create a testsuite to determine that. svn path=/trunk/libnsbmp/; revision=7586
* Don't even think about -Werror with gcc2...François Revel2009-04-241-2/+2
| | | | svn path=/trunk/libnsbmp/; revision=7309
* Update libnsbmp to new shared object standardsDaniel Silverstone2009-04-212-3/+3
| | | | svn path=/trunk/libnsbmp/; revision=7207
* Fix palette endianness of 16bpp and higher BMPs.Chris Young2009-04-191-0/+4
| | | | | | | All BMP test suite images now display correctly on PowerPC (AmigaOS 4) except g04rle.bmp which is crashing in bmp_decode_rle() svn path=/trunk/libnsbmp/; revision=7135
* Fix palette endiannessChris Young2009-04-191-0/+1
| | | | svn path=/trunk/libnsbmp/; revision=7134
* Fix compilationChris Young2009-04-192-2/+2
| | | | svn path=/trunk/libnsbmp/; revision=7133
* GCC 2.95 compatibilityJohn Mark Bell2009-04-151-2/+11
| | | | svn path=/trunk/libnsbmp/; revision=7096
* Shared library versioningJohn Mark Bell2009-04-032-5/+7
| | | | svn path=/trunk/libnsbmp/; revision=7033
* Fix warningsJohn Mark Bell2009-03-291-12/+12
| | | | svn path=/trunk/libnsbmp/; revision=6982
* First cut at a port to the new buildsystemJohn Mark Bell2009-03-295-113/+36
| | | | svn path=/trunk/libnsbmp/; revision=6981
* Prefix build dirs with build- and svn ignore them. Simplify clean rule.John Tytgat2009-02-011-5/+4
| | | | svn path=/trunk/libnsbmp/; revision=6334
* Properly avoid overflows of width and height and cast integers to 64-bit ↵Sean Fox2009-01-242-45/+12
| | | | | | where necessary to do proper calculations. svn path=/trunk/libnsbmp/; revision=6254
* Examples now allow partially decoded images. A warning is given for ↵Sean Fox2009-01-242-4/+10
| | | | | | BMP_INSUFFICIENT_DATA, but we still pass the bitmap data to display. svn path=/trunk/libnsbmp/; revision=6252
* Correct a few error returns; add notes on bmp_decode returning ↵Sean Fox2009-01-241-7/+15
| | | | | | BMP_INSUFFICIENT_DATA. svn path=/trunk/libnsbmp/; revision=6251
* Fix silly memory leaks.Sean Fox2009-01-242-6/+14
| | | | svn path=/trunk/libnsbmp/; revision=6250
* Check for proper image decoding /prior/ to outputting anything.Sean Fox2009-01-242-12/+14
| | | | svn path=/trunk/libnsbmp/; revision=6220
* Add a few more boundary checks.Sean Fox2009-01-241-3/+14
| | | | svn path=/trunk/libnsbmp/; revision=6219
* A 24-bit transparency index shouldn't be reading 32 bits of data.Sean Fox2009-01-241-1/+1
| | | | svn path=/trunk/libnsbmp/; revision=6218