readline: Fix buffer overrun on re-add to history
authorMarkus Armbruster <armbru@redhat.com>
Fri, 4 Nov 2011 10:10:01 +0000 (11:10 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Mon, 7 Nov 2011 08:03:49 +0000 (08:03 +0000)
commit4609262699c5557cd8cad3e952380dc9fc8c0d91
tree5dd88832b4fabe453fc84169da51f730b22a7718
parentee25ae811e827656e8c932057f10b4d3a780243f
readline: Fix buffer overrun on re-add to history

readline_hist_add() moves the history entry to the end of history.  It
uses memmove() to move rs->history[idx + 1..] to rs->history[idx..].
However, its size argument is off by two array elements, so it writes
one element beyond rs->history[], and reads two.

On my system, this clobbers rs->hist_entry and the hole right after
it.  Since the function assigns to rs->hist_entry in time, the bug has
no ill effects for me.

Spotted by Coverity.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
readline.c