Actions
Bug #2214
closed
QS
VJ
detect state uses broken offset logic
Bug #2214:
detect state uses broken offset logic
Affected Versions:
Effort:
Difficulty:
Label:
Description
in the DeStateDetectStartDetection() function at :
uint8_t offset = det_ctx->de_state_sig_array[s->num] & 0xef
I suspect that this line of code should be:
uint8_t offset = det_ctx->de_state_sig_array[s->num] & 0x7f
Actions