From b93dac3ee15aa40dc98a02513f37825c5a701459 Mon Sep 17 00:00:00 2001 From: cutealien Date: Tue, 3 Oct 2023 12:56:33 +0000 Subject: [PATCH] Merging r6547 from branch releases/1.8 to trunk Just updating changes.txt (stuff got backported, so changes are now mentioned in 1.8.6 instead of 1.9) git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6550 dfc29bdd-3216-0410-991c-e03cc46cb475 --- changes.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changes.txt b/changes.txt index 775c74a2..d68c94fb 100644 --- a/changes.txt +++ b/changes.txt @@ -1,8 +1,6 @@ -------------------------- Changes in 1.9 (not yet released) -- Fix number overflow in TGA loader causing crashes later on. Thanks @sfan5 for fuzzing test. -- Fix several buffer overflows in TGA loader. Thanks @erlehmann for report and @sfan5 for fuzzing test: https://github.com/minetest/irrlicht/issues/236 - TGA loader no longer reduces 24&32 bit TGA's with palettes to 16 bit. Thanks @erlehmann for report: https://irrlicht.sourceforge.io/forum/viewtopic.php?t=52925 - Fix compile error with OS X 10.10 SDK, bug #463. Thanks @Ryan Schmidt for report and patch. - Optimize quaternion::rotationFromTo. Thanks @Robert Eisele for patch and proof (https://raw.org/proof/quaternion-from-two-vectors) @@ -402,6 +400,8 @@ Changes in 1.9 (not yet released) -------------------------- Changes in 1.8.6 +- TGA loader: Fix number overflow causing crashes. Thanks @sfan5 for fuzzing test. +- TGA loader: Fix several buffer overflows. Thanks @erlehmann for report and @sfan5 for fuzzing test: https://github.com/minetest/irrlicht/issues/236 - COBJMeshFilerLoder: prevent buffer overruns from loading files passing negative indices. Thanks @sfan5 fore report and patch. Patch (commit 827710f to Minetest): https://github.com/minetest/irrlicht/commit/827710f74a615f53b2a1b0c539c58c2b6124f883 - COBJMeshFilerLoder: fix buffer overruns when loading empty face lines. Thanks @sfan5 fore report and patch.