mirror of
https://github.com/neovim/neovim.git
synced 2025-09-25 20:48:32 +00:00
eval: encode: Fix NULL check for partial's name
This commit is contained in:
@@ -319,7 +319,7 @@ int encode_read_from_list(ListReaderState *const state, char *const buf,
|
|||||||
do { \
|
do { \
|
||||||
int i; \
|
int i; \
|
||||||
ga_concat(gap, "function("); \
|
ga_concat(gap, "function("); \
|
||||||
if (&pt->pt_name != NULL) { \
|
if (pt->pt_name != NULL) { \
|
||||||
size_t len; \
|
size_t len; \
|
||||||
char_u *p; \
|
char_u *p; \
|
||||||
len = 3; \
|
len = 3; \
|
||||||
|
Reference in New Issue
Block a user