mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.3544: Unix: may leak file descriptor using non-existing directory
Problem: Unix: may leak file descriptor when using a non-existing directory. Solution: Always close the file. (closes #9023)
This commit is contained in:
parent
8b0e62c93b
commit
051a40c8d9
@ -2681,7 +2681,6 @@ mch_FullName(
|
||||
verbose_leave();
|
||||
}
|
||||
l = fchdir(fd);
|
||||
close(fd);
|
||||
}
|
||||
else
|
||||
#endif
|
||||
@ -2689,6 +2688,10 @@ mch_FullName(
|
||||
if (l != 0)
|
||||
emsg(_(e_prev_dir));
|
||||
}
|
||||
#ifdef HAVE_FCHDIR
|
||||
if (fd >= 0)
|
||||
close(fd);
|
||||
#endif
|
||||
|
||||
l = STRLEN(buf);
|
||||
if (l >= len - 1)
|
||||
|
@ -757,6 +757,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
3544,
|
||||
/**/
|
||||
3543,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user