comparison src/edit.c @ 19151:f12eda320c78 v8.2.0135

patch 8.2.0135: bracketed paste can still cause invalid memory access Commit: https://github.com/vim/vim/commit/fe4bbac1166f2e4e3fa18cb966ec7305198c8176 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 20 21:12:20 2020 +0100 patch 8.2.0135: bracketed paste can still cause invalid memory access Problem: Bracketed paste can still cause invalid memory access. (Dominique Pelle) Solution: Check for NULL pointer.
author Bram Moolenaar <Bram@vim.org>
date Mon, 20 Jan 2020 21:15:04 +0100
parents 06ef1e438ac8
children 6b1564fcab92
comparison
equal deleted inserted replaced
19150:c30587dcce5d 19151:f12eda320c78
4940 int ret_char = -1; 4940 int ret_char = -1;
4941 int save_allow_keys = allow_keys; 4941 int save_allow_keys = allow_keys;
4942 int save_paste = p_paste; 4942 int save_paste = p_paste;
4943 4943
4944 // If the end code is too long we can't detect it, read everything. 4944 // If the end code is too long we can't detect it, read everything.
4945 if (STRLEN(end) >= NUMBUFLEN) 4945 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
4946 end = NULL; 4946 end = NULL;
4947 ++no_mapping; 4947 ++no_mapping;
4948 allow_keys = 0; 4948 allow_keys = 0;
4949 if (!p_paste) 4949 if (!p_paste)
4950 // Also have the side effects of setting 'paste' to make it work much 4950 // Also have the side effects of setting 'paste' to make it work much