worksheet: fix buffer overflow in table formula expansion

This commit is contained in:
John McNamara 2025-02-11 10:26:22 +00:00
parent 69e5c5e1ce
commit a18ee6498d

View File

@ -1717,9 +1717,11 @@ _expand_table_formula(const char *formula)
ptr = formula; ptr = formula;
while (*ptr++) { while (*ptr) {
if (*ptr == '@') if (*ptr == '@')
ref_count++; ref_count++;
ptr++;
} }
if (ref_count == 0) { if (ref_count == 0) {