diff options
-rw-r--r-- | src/date.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/date.c b/src/date.c index 6d9333833..aa4b6a613 100644 --- a/src/date.c +++ b/src/date.c @@ -528,8 +528,7 @@ show_date (const char *format, struct timespec when) while (1) { int done; - out_length += 200; - out = xrealloc (out, out_length); + out = x2nrealloc (out, &out_length, sizeof *out); /* Mark the first byte of the buffer so we can detect the case of nstrftime producing an empty string. Otherwise, this loop |