mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a leak in the recent fixes for file descriptors > SHRT_MAX. In the
case of a file descriptor we can't handle, clear the FILE structure's flags so it can be reused. MFC after: 1 week Reported by: otto @ OpenBSD
This commit is contained in:
parent
491851f994
commit
bc669a8c33
1 changed files with 1 additions and 0 deletions
|
|
@ -73,6 +73,7 @@ fopen(file, mode)
|
|||
* open.
|
||||
*/
|
||||
if (f > SHRT_MAX) {
|
||||
fp->_flags = 0; /* release */
|
||||
_close(f);
|
||||
errno = EMFILE;
|
||||
return (NULL);
|
||||
|
|
|
|||
Loading…
Reference in a new issue