commit | 7756e7465d627ff9cd01e59625484a8c302ef853 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Oct 21 20:35:37 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Oct 21 20:35:37 2016 +0200 |
tree | 15d6f8773025a03bbf9fa90047321dda0643767b | |
parent | bb09ceb95477ecc271854b3fdd8d2776eca66adf [diff] [blame] |
patch 8.0.0046 Problem: Using NUL instead of NULL. Solution: Change to NULL. (Dominique Pelle)
diff --git a/src/json.c b/src/json.c index 0132df6..36d47aa 100644 --- a/src/json.c +++ b/src/json.c
@@ -861,7 +861,7 @@ break; } - if (res != NUL) + if (res != NULL) { res->v_type = VAR_SPECIAL; res->vval.v_number = VVAL_NONE;