From f42e522731016ae8723365a7fe6feb72ee0fea1b Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Wed, 12 Feb 2025 12:01:14 +0700 Subject: [PATCH] 063-gtx-common-conf: add bitfilter to avoid collisions Signed-off-by: Hans Baier --- fuzzers/063-gtx-common-conf/generate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fuzzers/063-gtx-common-conf/generate.py b/fuzzers/063-gtx-common-conf/generate.py index 16d85af0..5121fa64 100644 --- a/fuzzers/063-gtx-common-conf/generate.py +++ b/fuzzers/063-gtx-common-conf/generate.py @@ -40,6 +40,9 @@ def bitfilter_gtx_common(frame, bit): if word < 44 or word > 56: return False + if frame < 30 or frame > 31: + return False + return True