mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
typo in libedit fixed - possible buffer overflow - bug#4696
This commit is contained in:
@ -649,7 +649,7 @@ history_save(History *h, const char *fname)
|
||||
retval = HPREV(h, &ev), i++) {
|
||||
len = strlen(ev.str) * 4;
|
||||
if (len >= max_size) {
|
||||
max_size = (len + 1023) & 1023;
|
||||
max_size = (len + 1023) & ~1023;
|
||||
ptr = h_realloc(ptr, max_size);
|
||||
}
|
||||
(void) strvis(ptr, ev.str, VIS_WHITE);
|
||||
|
Reference in New Issue
Block a user