summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-10-14 03:41:59 +0200
committerBram Moolenaar <Bram@vim.org>2012-10-14 03:41:59 +0200
commitd04da7cb4afe77de05e4e08e7e86e504be6759e0 (patch)
treeef6ab3ea578a21cf2b55a630ab6092ad7cd8656b
parent7bc4f93c07a1e8b17e7d91f814b9801bd611d569 (diff)
downloadvim-git-7.3.689.tar.gz
updated for version 7.3.689v7.3.689
Problem: MzScheme and Lua may use a NULL string. Solution: Use an empty string instead of NULL. (Yukihiro Nakadaira)
-rw-r--r--src/if_lua.c3
-rw-r--r--src/if_mzsch.c3
-rw-r--r--src/version.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/src/if_lua.c b/src/if_lua.c
index e873b6bf7..ce65fd2f6 100644
--- a/src/if_lua.c
+++ b/src/if_lua.c
@@ -464,7 +464,8 @@ luaV_pushtypval(lua_State *L, typval_T *tv)
switch (tv->v_type)
{
case VAR_STRING:
- lua_pushstring(L, (char *) tv->vval.v_string);
+ lua_pushstring(L, tv->vval.v_string == NULL
+ ? "" : (char *)tv->vval.v_string);
break;
case VAR_NUMBER:
lua_pushinteger(L, (int) tv->vval.v_number);
diff --git a/src/if_mzsch.c b/src/if_mzsch.c
index 86e96bd33..d6ee4b9c5 100644
--- a/src/if_mzsch.c
+++ b/src/if_mzsch.c
@@ -2649,7 +2649,8 @@ vim_to_mzscheme(typval_T *vim_value, int depth, Scheme_Hash_Table *visited)
new_value = FALSE;
else if (vim_value->v_type == VAR_STRING)
{
- result = scheme_make_string((char *)vim_value->vval.v_string);
+ result = scheme_make_string(vim_value->vval.v_string == NULL
+ ? "" : (char *)vim_value->vval.v_string);
MZ_GC_CHECK();
}
else if (vim_value->v_type == VAR_NUMBER)
diff --git a/src/version.c b/src/version.c
index d512955fa..0ea098b92 100644
--- a/src/version.c
+++ b/src/version.c
@@ -720,6 +720,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 689,
+/**/
688,
/**/
687,