svn commit: r200749 - stable/8/usr.sbin/jls
Jamie Gritton
jamie at FreeBSD.org
Sun Dec 20 04:45:33 UTC 2009
Author: jamie
Date: Sun Dec 20 04:45:32 2009
New Revision: 200749
URL: http://svn.freebsd.org/changeset/base/200749
Log:
MFC r200449:
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
Modified:
stable/8/usr.sbin/jls/jls.c
Directory Properties:
stable/8/usr.sbin/jls/ (props changed)
Modified: stable/8/usr.sbin/jls/jls.c
==============================================================================
--- stable/8/usr.sbin/jls/jls.c Sun Dec 20 02:35:10 2009 (r200748)
+++ stable/8/usr.sbin/jls/jls.c Sun Dec 20 04:45:32 2009 (r200749)
@@ -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-stable-8
mailing list