1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 23:27:12 +00:00

Static analysis suggests savedS might be used uninitialized (pathlength > 150). It is or-ed into a result, so initialize to 0

This commit is contained in:
Nick Briggs 2022-12-14 18:59:15 -08:00
parent 0ba8380aea
commit d5acdf7ea4

View File

@ -714,7 +714,7 @@ unsigned int *OrigSrcAddr, *OrigDstAddr; \
int bb_fast; \
unsigned int preloop_mask, postloop_mask, sdw_mask; \
unsigned int *dst32addr, *src32addr; \
unsigned int shS, savedS, newS; \
unsigned int shS, savedS = 0, newS; \
int srcRshift;