bin/141359: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Sun Dec 20 04:50:04 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: Sun, 20 Dec 2009 04:45:46 +0000 (UTC)

 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);
  }
  
 _______________________________________________
 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