0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.0399: various memory leaks

Problem:    Various memory leaks.
Solution:   Avoid the leaks. (Ozaki Kiichi, closes #5803)
This commit is contained in:
Bram Moolenaar
2020-03-18 15:23:16 +01:00
parent a21df1db3c
commit 292b90d4fa
7 changed files with 29 additions and 4 deletions

View File

@@ -1133,7 +1133,8 @@ do_source(
{
// Already loaded and no need to load again, return here.
*ret_sid = sid;
return OK;
retval = OK;
goto theend;
}
#endif