Problem: Memory leak when using class functions.
Solution: Clear and free the array with class functions.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1125,
/**/
1124,
/**/
}
vim_free(cl->class_obj_members);
+ for (int i = 0; i < cl->class_class_function_count; ++i)
+ {
+ ufunc_T *uf = cl->class_class_functions[i];
+ func_clear_free(uf, FALSE);
+ }
+ vim_free(cl->class_class_functions);
+
for (int i = 0; i < cl->class_obj_method_count; ++i)
{
ufunc_T *uf = cl->class_obj_methods[i];