0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.0.0046

Problem:    Using NUL instead of NULL.
Solution:   Change to NULL. (Dominique Pelle)
This commit is contained in:
Bram Moolenaar
2016-10-21 20:35:37 +02:00
parent bb09ceb954
commit 7756e7465d
3 changed files with 5 additions and 3 deletions

View File

@@ -861,7 +861,7 @@ json_decode_item(js_read_T *reader, typval_T *res, int options)
break;
}
if (res != NUL)
if (res != NULL)
{
res->v_type = VAR_SPECIAL;
res->vval.v_number = VVAL_NONE;