bin/141692: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Sun Dec 20 04:50:06 UTC 2009


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

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: bin/141692: commit references a PR
Date: Sun, 20 Dec 2009 04:49:47 +0000 (UTC)

 Author: jamie
 Date: Sun Dec 20 04:49:29 2009
 New Revision: 200750
 URL: http://svn.freebsd.org/changeset/base/200750
 
 Log:
   MFC r200623:
   
     Add a null pointer check so "name" can be used as a key parameter in
     jailparam_get.
   
   PR:		bin/141692
   Submitted by:	delphij
 
 Modified:
   stable/8/lib/libjail/jail.c
 Directory Properties:
   stable/8/lib/libjail/   (props changed)
 
 Modified: stable/8/lib/libjail/jail.c
 ==============================================================================
 --- stable/8/lib/libjail/jail.c	Sun Dec 20 04:45:32 2009	(r200749)
 +++ stable/8/lib/libjail/jail.c	Sun Dec 20 04:49:29 2009	(r200750)
 @@ -532,7 +532,7 @@ jailparam_get(struct jailparam *jp, unsi
  	}
  	jp_key = jp_lastjid ? jp_lastjid :
  	    jp_jid && jp_jid->jp_valuelen == sizeof(int) &&
 -	    *(int *)jp_jid->jp_value ? jp_jid : jp_name;
 +	    jp_jid->jp_value && *(int *)jp_jid->jp_value ? jp_jid : jp_name;
  	if (jp_key == NULL || jp_key->jp_value == NULL) {
  		strlcpy(jail_errmsg, "no jail specified", JAIL_ERRMSGLEN);
  		errno = ENOENT;
 _______________________________________________
 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