mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
worksheet: fix buffer overflow in table formula expansion
This commit is contained in:
parent
69e5c5e1ce
commit
a18ee6498d
@ -1717,9 +1717,11 @@ _expand_table_formula(const char *formula)
|
||||
|
||||
ptr = formula;
|
||||
|
||||
while (*ptr++) {
|
||||
while (*ptr) {
|
||||
if (*ptr == '@')
|
||||
ref_count++;
|
||||
|
||||
ptr++;
|
||||
}
|
||||
|
||||
if (ref_count == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user