bin/141359: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Sat Dec 12 22:00:13 UTC 2009


The following reply was made to PR bin/141359; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: bin/141359: commit references a PR
Date: Sat, 12 Dec 2009 21:59:42 +0000 (UTC)

 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);
  }
  
 _______________________________________________
 svn-src-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-bugs mailing list