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;