Skip to content

Commit

Permalink
updated for version 7.3.070
Browse files Browse the repository at this point in the history
Problem:    Can set environment variables in the sandbox, could be abused.
Solution:   Disallow it.
  • Loading branch information
brammool committed Dec 2, 2010
1 parent 7c84bd9 commit 4ece06e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/eval.c
Expand Up @@ -2326,7 +2326,7 @@ ex_let_one(arg, tv, copy, endchars, op)
else if (endchars != NULL
&& vim_strchr(endchars, *skipwhite(arg)) == NULL)
EMSG(_(e_letunexp));
else
else if (!check_secure())
{
c1 = name[len];
name[len] = NUL;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -714,6 +714,8 @@ static char *(features[]) =

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

0 comments on commit 4ece06e

Please sign in to comment.