diff options
author | unknown <serg@serg.mylan> | 2004-08-21 23:53:42 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-08-21 23:53:42 +0200 |
commit | fe450cd719ef074cbc3895e183fbabd5669325e6 (patch) | |
tree | 5668aa80ad86de8096b9d422a0fa1b227e26276f /cmd-line-utils | |
parent | 5803d60379e632a7c6fed05e02f0d03db2a4d18e (diff) | |
download | mariadb-git-fe450cd719ef074cbc3895e183fbabd5669325e6.tar.gz |
libedit safety fix: account for closing \0
cmd-line-utils/libedit/history.c:
account for closing \0
Diffstat (limited to 'cmd-line-utils')
-rw-r--r-- | cmd-line-utils/libedit/history.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-line-utils/libedit/history.c b/cmd-line-utils/libedit/history.c index 457c8f4a768..bae50787b94 100644 --- a/cmd-line-utils/libedit/history.c +++ b/cmd-line-utils/libedit/history.c @@ -647,7 +647,7 @@ history_save(History *h, const char *fname) for (retval = HLAST(h, &ev); retval != -1; retval = HPREV(h, &ev), i++) { - len = strlen(ev.str) * 4; + len = strlen(ev.str) * 4 + 1; if (len >= max_size) { max_size = (len + 1023) & ~1023; ptr = h_realloc(ptr, max_size); |