Package: allegro5 / 2:5.2.6.0-3+deb11u1
Metadata
Package | Version | Patches format |
---|---|---|
allegro5 | 2:5.2.6.0-3+deb11u1 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
fix manpages.patch | (download) |
docs/src/refman/font.txt |
14 7 + 7 - 0 ! |
fix a manpage issue. * When manpages are generated from these files, this stuff with the dots is interpreted as a (missing) macro and not displayed. |
fix manpage generation script.patch | (download) |
docs/Refman.cmake |
2 1 + 1 - 0 ! |
fix issues with the manpage generation script. * Add alleg5 suffix to manual page file names to prevent possible name clashes. |
use debians dejavu font.patch | (download) |
tests/test_fonts.ini |
2 1 + 1 - 0 ! |
use debian's dejavusans font for the fonts test. It is in the package fonts-dejavu-core. |
0004 Migrate GTK2 to GTK3.patch | (download) |
addons/native_dialog/CMakeLists.txt |
2 1 + 1 - 0 ! |
migrate gtk2 to gtk3 Bug: https://github.com/liballeg/allegro5/pull/1155 |
0005 Fix warnings in make_doc.patch | (download) |
docs/scripts/make_doc.c |
2 1 + 1 - 0 ! |
fix warnings in make_doc |
0006 Prevent RLE data in corrupt .tga from overflowing th.patch | (download) |
addons/image/tga.c |
116 96 + 20 - 0 ! |
prevent rle data in corrupt .tga from overflowing the buffer Also masked out the 1-bit A value from a 15-bit image; this could cause the bounds of _al_rgb_scale_5[] to be exceeded. |
0007 Reject creating bitmaps with negative width or heigh.patch | (download) |
src/bitmap.c |
9 4 + 5 - 0 ! |
reject creating bitmaps with negative width or height Also reject absurd sizes. Previously bitmaps with a height of INT_MIN could slip through the checks, by a combination of lower bounds and arithmetic overflows and be created by the Open GL driver. However this bitmap would cause a crash when al_lock_bitmap was called. |
0008 PCX loader validation.patch | (download) |
addons/image/pcx.c |
5 5 + 0 - 0 ! |
pcx loader validation Validate bytes_per_line. Validate palette |
0009 Windows BMP Make more robust to crashing.patch | (download) |
addons/image/bmp.c |
179 108 + 71 - 0 ! |
windows bmp - make more robust to crashing Validate compression mode and palette size Handle zero-sized bitmaps Fix text description to match the order of the fields Make sure RLE4/RLE8 decoders don't step outside their buffers Track failure from the decoders and use to avoid leaks Allow extra space to prevent direct color decoder reading outside its buffer |