svn commit: r200449 - head/usr.sbin/jls

Jamie Gritton jamie at FreeBSD.org
Sat Dec 12 13:59:31 PST 2009


Author: jamie
Date: Sat Dec 12 21:59:30 2009
New Revision: 200449
URL: http://svn.freebsd.org/changeset/base/200449

Log:
  Don't free jail parameter values after printing them - jail_param_get
  expects them to be there for the next jail in the list.
  
  PR:		bin/141359
  MFC after:	1 week

Modified:
  head/usr.sbin/jls/jls.c

Modified: head/usr.sbin/jls/jls.c
==============================================================================
--- head/usr.sbin/jls/jls.c	Sat Dec 12 21:51:50 2009	(r200448)
+++ head/usr.sbin/jls/jls.c	Sat Dec 12 21:59:30 2009	(r200449)
@@ -425,11 +425,6 @@ print_jail(int pflags, int jflags)
 			if (params[i].jp_flags & JP_USER)
 				free(param_values[i]);
 	}
-	for (i = 0; i < nparams; i++)
-		if (!(params[i].jp_flags & JP_RAWVALUE)) {
-			free(params[i].jp_value);
-			params[i].jp_value = NULL;
-		}
 	return (jid);
 }
 


More information about the svn-src-all mailing list