svn commit: r316150 - head/usr.sbin/makefs

Ed Maste emaste at FreeBSD.org
Wed Mar 29 15:45:21 UTC 2017


Author: emaste
Date: Wed Mar 29 15:45:19 2017
New Revision: 316150
URL: https://svnweb.freebsd.org/changeset/base/316150

Log:
  makefs: free specfile structure once it has been applied
  
  NetBSD revs:
  walk.c		1.21
  
  Obtained from:	NetBSD
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/makefs/walk.c

Modified: head/usr.sbin/makefs/walk.c
==============================================================================
--- head/usr.sbin/makefs/walk.c	Wed Mar 29 15:45:04 2017	(r316149)
+++ head/usr.sbin/makefs/walk.c	Wed Mar 29 15:45:19 2017	(r316150)
@@ -333,6 +333,7 @@ apply_specfile(const char *specfile, con
 				/* merge in the changes */
 	apply_specdir(dir, root, parent, speconly);
 
+	free_nodes(root);
 }
 
 static void


More information about the svn-src-head mailing list