Fix false positive duplicateAssignExpression warnings

This commit is contained in:
Konstantinos Margaritis 2024-05-11 23:13:45 +03:00
parent cd1e13d4d2
commit 9ee4c07964

View File

@ -83,9 +83,9 @@ hs_error_t alloc_scratch(const hs_scratch_t *proto, hs_scratch_t **scratch) {
u32 anchored_literal_fatbit_size = proto->anchored_literal_fatbit_size;
u32 som_store_size = proto->som_store_count * sizeof(u64a);
u32 som_attempted_store_size = proto->som_store_count * sizeof(u64a);
u32 som_attempted_store_size = som_store_size; // Same as som_store_size
u32 som_now_size = proto->som_fatbit_size;
u32 som_attempted_size = proto->som_fatbit_size;
u32 som_attempted_size = som_now_size; // Same as som_now_size
struct hs_scratch *s;
struct hs_scratch *s_tmp;