diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2023-05-21 23:09:08 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2023-05-21 23:09:08 (GMT) |
commit | 15fb909bdd8ca0f37dd71da7427ea6bc6bb71cbb (patch) | |
tree | f6fff6c9a2ad1cc6c02619c0709fbe3232e52171 /src/analysis | |
parent | 5b53b8712726429784cd8854b78dc846dada3da2 (diff) |
Create a placeholder for Python registered items in order to keep scans working.
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/scan/matches/pending.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/scan/matches/pending.c b/src/analysis/scan/matches/pending.c index 700b868..73b7a06 100644 --- a/src/analysis/scan/matches/pending.c +++ b/src/analysis/scan/matches/pending.c @@ -96,7 +96,7 @@ bool find_target_in_pending_matches(pending_matches_t *matches, phys_t start, si size_t i; /* Boucle de parcours */ match_area_t *area; /* Zone à initialiser */ - assert(mindex <= matches->used); + assert(*target <= matches->used); result = false; |