From 78a70533c3707aa50cbf998c7807221945aa9787 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 13 Jan 2022 13:24:34 +0000 Subject: [PATCH] patch 8.2.4075: test failures Problem: Test failures. Solution: Change check for NULL pointer. --- src/userfunc.c | 4 +--- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/userfunc.c b/src/userfunc.c index 4072349cb..fc6cea38c 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -4152,13 +4152,11 @@ define_function(exarg_T *eap, char_u *name_arg, garray_T *lines_to_free) else eap->skip = TRUE; } - if (name == NULL) - goto ret_free; // out of memory // For "export def FuncName()" in an autoload script the function name // is stored with the legacy autoload name "dir#script#FuncName" so // that it can also be found in legacy script. - if (is_export) + if (is_export && name != NULL) name = may_prefix_autoload(name); } diff --git a/src/version.c b/src/version.c index 1f4a03162..ba6e5da08 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4075, /**/ 4074, /**/ -- 2.40.0