Commit b2009150 authored by unknown's avatar unknown

typo in libedit fixed - possible buffer overflow - bug#4696

parent f16752da
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment