mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.0426: accessing invalid memory in SmcOpenConnection()
Problem: Accessing invalid memory in SmcOpenConnection(). Solution: Reduce size of errorstring by one. (Dominique Pelle, closes #3469)
This commit is contained in:
parent
9cea87c577
commit
4841a7ccae
@ -8032,7 +8032,7 @@ xsmp_init(void)
|
|||||||
&smcallbacks,
|
&smcallbacks,
|
||||||
NULL,
|
NULL,
|
||||||
&xsmp.clientid,
|
&xsmp.clientid,
|
||||||
sizeof(errorstring),
|
sizeof(errorstring) - 1,
|
||||||
errorstring);
|
errorstring);
|
||||||
if (xsmp.smcconn == NULL)
|
if (xsmp.smcconn == NULL)
|
||||||
{
|
{
|
||||||
|
@ -272,7 +272,7 @@ endfunc
|
|||||||
" Test the -V[N]{filename} argument to set the 'verbose' option to N
|
" Test the -V[N]{filename} argument to set the 'verbose' option to N
|
||||||
" and set 'verbosefile' to filename.
|
" and set 'verbosefile' to filename.
|
||||||
func Test_V_file_arg()
|
func Test_V_file_arg()
|
||||||
if RunVim([], [], ' --clean -X -V2Xverbosefile -c "set verbose? verbosefile?" -cq')
|
if RunVim([], [], ' --clean -V2Xverbosefile -c "set verbose? verbosefile?" -cq')
|
||||||
let out = join(readfile('Xverbosefile'), "\n")
|
let out = join(readfile('Xverbosefile'), "\n")
|
||||||
call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out)
|
call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out)
|
||||||
call assert_match("\n verbose=2\n", out)
|
call assert_match("\n verbose=2\n", out)
|
||||||
|
@ -794,6 +794,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
426,
|
||||||
/**/
|
/**/
|
||||||
425,
|
425,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user