From: Bram Moolenaar Date: Sun, 10 Oct 2021 11:35:17 +0000 (+0100) Subject: patch 8.2.3492: crash when pasting too many times X-Git-Tag: v8.2.3492 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eeed1c7ae090c17f4df51cf97b2a9e4d8b4f4dc7;p=vim patch 8.2.3492: crash when pasting too many times Problem: Crash when pasting too many times. Solution: Limit the size to what fits in an int. (closes #8962) --- diff --git a/src/errors.h b/src/errors.h index a8ea33d17..4cc50e42c 100644 --- a/src/errors.h +++ b/src/errors.h @@ -664,3 +664,5 @@ EXTERN char e_blob_required_for_argument_nr[] INIT(= N_("E1238: Blob required for argument %d")); EXTERN char e_invalid_value_for_blob_nr[] INIT(= N_("E1239: Invalid value for blob: %d")); +EXTERN char e_resulting_text_too_long[] + INIT(= N_("E1240: Resulting text too long")); diff --git a/src/register.c b/src/register.c index f034c645b..9f179ea15 100644 --- a/src/register.c +++ b/src/register.c @@ -2011,8 +2011,15 @@ do_put( } do { - totlen = count * yanklen; - if (totlen > 0) + long multlen = count * yanklen; + + totlen = multlen; + if (totlen != multlen) + { + emsg(_(e_resulting_text_too_long)); + break; + } + else if (totlen > 0) { oldp = ml_get(lnum); if (lnum > start_lnum) diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim index f3a320f46..4a3a0d197 100644 --- a/src/testdir/test_put.vim +++ b/src/testdir/test_put.vim @@ -134,4 +134,12 @@ func Test_gp_with_count_leaves_cursor_at_end() bwipe! endfunc +func Test_very_larg_count() + new + let @" = 'x' + call assert_fails('norm 44444444444444p', 'E1240:') + bwipe! +endfunc + + " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c index 5fe4dcca6..247af254c 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3492, /**/ 3491, /**/