You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And just in case this is not a false positive:
2) Overrunning array jpgd::g_ZAG of 64 4-byte elements at element index 64 (byte offset 259) using index kt++ (which evaluates to 64).
Thank you, I'll add a logical and against 63 here to silence Coverity. I've seen the 2nd issue before, this statement should prevent the problem but I'll add the logical and in the loop to be sure:
if ((k + r) > 63)
stop_decoding(JPGD_DECODE_ERROR);
jpeg-compressor/jpgd.cpp
Line 779 in aeb7d3b
And just in case this is not a false positive:
2) Overrunning array jpgd::g_ZAG of 64 4-byte elements at element index 64 (byte offset 259) using index kt++ (which evaluates to 64).
jpeg-compressor/jpgd.cpp
Line 1533 in aeb7d3b
The text was updated successfully, but these errors were encountered: