commit | 12a718488a91810bfdead2aa59d751a92fe7a080 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Tue Feb 26 18:19:48 2019 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Feb 26 19:07:44 2019 +0100 |
tree | 3cda0227ffa1b9c0e9ad806c5d460357e48cbdfc | |
parent | dd1c8f1f721fc139ecb5b96f81caf69894964715 [diff] |
BUG/MEDIUM: standard: Wrong reallocation size. The number of bytes to use with "my_realloc2()" in parse_dotted_nums() was wrong: missing multiplication by the size of an element of an array when reallocating it.
diff --git a/src/standard.c b/src/standard.c index 86dee44..24e014a 100644 --- a/src/standard.c +++ b/src/standard.c
@@ -4091,7 +4091,7 @@ if (*s != '\0'&& (*s++ != '.' || s == end)) return 0; - n = my_realloc2(n, *sz + 1); + n = my_realloc2(n, (*sz + 1) * sizeof *n); if (!n) return 0;