hexedit: fixes for redraw and down movement causing SEGV on attempt to access
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 23 Jul 2018 12:21:07 +0000 (14:21 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 23 Jul 2018 12:26:55 +0000 (14:26 +0200)
commitca2f831ead327d98ab3374acb3b07ad7632ea02d
tree297a6533950a24a21390483f54f053513e67868f
parentf36caa4071bbb5bb6d098ced8116accc65370dd8
hexedit: fixes for redraw and down movement causing SEGV on attempt to access

"Go to:" command was not updating row position, making next "down" movements
for one screenful print empty lines instead of showing the contents.

If the file is whole pages long, "down" movement at EOF was advancing position
+16 bytes, mapping the next portion (entirely past the end of the file),
then finding out that the new position is beyond the EOF, rolling it back
-16 bytes... ending up with this postion pointing *before* the mapped portion.
Any next access (e.g. "move right" key) SEGVs.

function                                             old     new   delta
hexedit_main                                        1170    1184     +14

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
miscutils/hexedit.c