mirror of
https://github.com/neovim/neovim.git
synced 2026-08-25 08:31:51 +00:00
vim-patch:9.2.0458: Crash with invalid shellredir/shellpipe value (#39691)
Problem: Crash with invalid shellredir/shellpipe value
(bfredl)
Solution: Validate the option and allow only a single "%s".
fixes: vim/vim#20157
closes: vim/vim#20159
84ae09dd79
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -7722,6 +7722,7 @@ local options = {
|
||||
},
|
||||
{
|
||||
abbreviation = 'sp',
|
||||
cb = 'did_set_shellpipe_redir',
|
||||
defaults = {
|
||||
condition = 'MSWIN',
|
||||
if_false = '| tee',
|
||||
@@ -7758,6 +7759,7 @@ local options = {
|
||||
Note: When using a pipe like "| tee", you'll lose the exit code of the
|
||||
shell command. This might be configurable by your shell, look for
|
||||
the pipefail option (for bash and zsh, use ":set -o pipefail").
|
||||
Only a single "%s" value is allowed.
|
||||
]=],
|
||||
full_name = 'shellpipe',
|
||||
scope = { 'global' },
|
||||
@@ -7793,6 +7795,7 @@ local options = {
|
||||
},
|
||||
{
|
||||
abbreviation = 'srr',
|
||||
cb = 'did_set_shellpipe_redir',
|
||||
defaults = {
|
||||
condition = 'MSWIN',
|
||||
if_false = '>',
|
||||
@@ -7819,6 +7822,8 @@ local options = {
|
||||
explicitly set before.
|
||||
In the future pipes may be used for filtering and this option will
|
||||
become obsolete (at least for Unix).
|
||||
*E1577*
|
||||
Only a single "%s" item is allowed in the option value.
|
||||
]=],
|
||||
full_name = 'shellredir',
|
||||
scope = { 'global' },
|
||||
|
||||
Reference in New Issue
Block a user