Problem: Test failures.
Solution: Change check for NULL pointer.
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);
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 4075,
/**/
4074,
/**/