Skip to content

Commit

Permalink
patch 9.1.0405: tests: xxd buffer overflow fails on 32-bit
Browse files Browse the repository at this point in the history
Problem:  tests: xxd buffer overflow fails on 32-bit
Solution: Skip test on 32-bit architecture

Signed-off-by: Christian Brabandt <cb@256bit.org>
  • Loading branch information
chrisbra committed May 10, 2024
1 parent 06bdac1 commit b7deb1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/testdir/test_xxd.vim
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,12 @@ func Test_xxd_max_cols()
endfunc


" Try to trigger a buffer overflow (#14738)
" This used to trigger a buffer overflow (#14738)
func Test_xxd_buffer_overflow()
CheckUnix
if system('file ' .. s:xxd_cmd) =~ '32-bit'
throw 'Skipped: test only works on 64-bit architecture'
endif
new
let input = repeat('A', 256)
call writefile(['-9223372036854775808: ' . repeat("\e[1;32m41\e[0m ", 256) . ' ' . repeat("\e[1;32mA\e[0m", 256)], 'Xxdexpected', 'D')
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
405,
/**/
404,
/**/
Expand Down

0 comments on commit b7deb1b

Please sign in to comment.