Author: dchagin
Date: Sun Jun  5 07:40:12 2016
New Revision: 301430
URL: https://svnweb.freebsd.org/changeset/base/301430

Log:
  MFC r300569:
  
  Don't leak fp in case where fo_ioctl() returns an error.
  
  Reported by:  C Turt <ect...@gmail.com>

Modified:
  stable/10/sys/compat/linux/linux_ioctl.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/compat/linux/linux_ioctl.c
==============================================================================
--- stable/10/sys/compat/linux/linux_ioctl.c    Sun Jun  5 07:38:56 2016        
(r301429)
+++ stable/10/sys/compat/linux/linux_ioctl.c    Sun Jun  5 07:40:12 2016        
(r301430)
@@ -978,7 +978,7 @@ linux_ioctl_termio(struct thread *td, st
                error = fo_ioctl(fp, TIOCGETD, (caddr_t)&bsd_line,
                    td->td_ucred, td);
                if (error)
-                       return (error);
+                       break;
                switch (bsd_line) {
                case TTYDISC:
                        linux_line = LINUX_N_TTY;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to