mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.3.689
Problem: MzScheme and Lua may use a NULL string. Solution: Use an empty string instead of NULL. (Yukihiro Nakadaira)
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user