summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@posteo.nl>2024-07-26 16:23:32 +0200
committerNicky <nicky.dasmijn@posteo.nl>2024-07-26 16:23:32 +0200
commit4225a04b444a3108439842b3ec629a55a5f7ba8b (patch)
tree7de72017da4ff062a277f206ca20987b7e0349c3 /indra
parent8020079eb2bb50175f72fc7dde38346db7ee2477 (diff)
Fix GCC being overly suspicious about a possible zero size allocation
Diffstat (limited to 'indra')
-rw-r--r--indra/llimage/llimagefilter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llimage/llimagefilter.cpp b/indra/llimage/llimagefilter.cpp
index bfcb1f76de..3b12aa39e4 100644
--- a/indra/llimage/llimagefilter.cpp
+++ b/indra/llimage/llimagefilter.cpp
@@ -389,6 +389,11 @@ void LLImageFilter::convolve(const LLMatrix3 &kernel, bool normalize, bool abs_v
S32 buffer_size = width * components;
llassert_always(buffer_size > 0);
+
+ // ND: GCC womtimes is unable to figure out llassert_always (aka LLERROR_CRASH) will never return.
+ // This return here is just a dummy and will not be reached.
+ if( buffer_size == 0 ){return; }
+
std::vector<U8> even_buffer(buffer_size);
std::vector<U8> odd_buffer(buffer_size);