- stb_image-devel is updated to 2.29 - stb_image_resize2-devel is updated to 2.05epel9
parent
9fdd5ed294
commit
e4049425e8
@ -1,28 +0,0 @@
|
||||
From 6e715778416b229799f85b49fa3ffc0400428f89 Mon Sep 17 00:00:00 2001
|
||||
From: "Jeff Roberts (LA)" <jeffr@radgametools.com>
|
||||
Date: Thu, 19 Oct 2023 17:42:58 -0700
|
||||
Subject: [PATCH] Fixed asan error on tiny input images
|
||||
|
||||
---
|
||||
stb_image_resize2.h | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/stb_image_resize2.h b/stb_image_resize2.h
|
||||
index e0c428246..1d7bed5bd 100644
|
||||
--- a/stb_image_resize2.h
|
||||
+++ b/stb_image_resize2.h
|
||||
@@ -1,4 +1,4 @@
|
||||
-/* stb_image_resize2 - v2.01 - public domain image resizing
|
||||
+/* stb_image_resize2 - v2.02 - public domain image resizing
|
||||
|
||||
by Jeff Roberts (v2) and Jorge L Rodriguez
|
||||
http://github.com/nothings/stb
|
||||
@@ -3697,7 +3697,7 @@ static int stbir__pack_coefficients( int num_contributors, stbir__contributors*
|
||||
float * coeffs = coefficents + widest * ( num_contributors - 1 );
|
||||
|
||||
// go until no chance of clipping (this is usually less than 8 lops)
|
||||
- while ( ( ( contribs->n0 + widest*2 ) >= row_width ) && ( contribs >= contributors ) )
|
||||
+ while ( ( contribs >= contributors ) && ( ( contribs->n0 + widest*2 ) >= row_width ) )
|
||||
{
|
||||
// might we clip??
|
||||
if ( ( contribs->n0 + widest ) > row_width )
|
@ -1 +1 @@
|
||||
SHA512 (stb-beebb24b945efdea3b9bba23affb8eb3ba8982e7.tar.gz) = 83f09092340f158772c467d2069309c06a7c888d710ea651a974d7be47391d78be36b76e4ad32a38972da5e78561ea8fa13a9e20a81c1b89ff00e8f3dd73c8ed
|
||||
SHA512 (stb-b7cf1246284b49dfe7f1288e6f739b7a3a9d966b.tar.gz) = 86dc319e3ddfc5cc1e53d31b96c366418fa4551ddb9da5d48fdb7615e48f96fffb613fc86d1776d921d4ba3b2bc56564f8cf5ec258d0bf13cb050723799a5c60
|
||||
|
Loading…
Reference in new issue