Author: seanc (ports committer)
Date: Thu Jul 11 19:41:14 2019
New Revision: 349918
URL: https://svnweb.freebsd.org/changeset/base/349918

Log:
  usr.sbin/bhyve: free leaked memory during option parsing
  
  Also update to use strsep(3) instead of strtok(3).
  
  Most of this commit inadvertently ended up in r349914.
  
  Coverity CID: 1357337
  Approved by:  markj
  PR:           233038
  Differential Revision:        https://reviews.freebsd.org/D20918

Modified:
  head/usr.sbin/bhyve/pci_fbuf.c

Modified: head/usr.sbin/bhyve/pci_fbuf.c
==============================================================================
--- head/usr.sbin/bhyve/pci_fbuf.c      Thu Jul 11 19:36:18 2019        
(r349917)
+++ head/usr.sbin/bhyve/pci_fbuf.c      Thu Jul 11 19:41:14 2019        
(r349918)
@@ -317,7 +317,7 @@ pci_fbuf_parse_opts(struct pci_fbuf_softc *sc, char *o
        }
 
 done:
-       free(uopts);
+       free(uoptsbak);
        return (ret);
 }
 
_______________________________________________
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