Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Feb 2009 19:50:07 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-geom@FreeBSD.org
Subject:   Re: kern/131575: commit references a PR
Message-ID:  <200902131950.n1DJo7Pd079137@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/131575; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/131575: commit references a PR
Date: Fri, 13 Feb 2009 19:49:52 +0000 (UTC)

 Author: lulf
 Date: Fri Feb 13 19:49:35 2009
 New Revision: 188596
 URL: http://svn.freebsd.org/changeset/base/188596
 
 Log:
   MFC r188492:
   - Use the correct argument when determining the buffer size.
   
   PR:		kern/131575
 
 Modified:
   stable/7/sys/   (props changed)
   stable/7/sys/contrib/pf/   (props changed)
   stable/7/sys/dev/ath/ath_hal/   (props changed)
   stable/7/sys/dev/cxgb/   (props changed)
   stable/7/sys/geom/label/g_label_msdosfs.c
 
 Modified: stable/7/sys/geom/label/g_label_msdosfs.c
 ==============================================================================
 --- stable/7/sys/geom/label/g_label_msdosfs.c	Fri Feb 13 19:25:35 2009	(r188595)
 +++ stable/7/sys/geom/label/g_label_msdosfs.c	Fri Feb 13 19:49:35 2009	(r188596)
 @@ -186,7 +186,7 @@ g_label_msdosfs_taste(struct g_consumer 
  				    FAT_DES_ATTR_VOLUME_ID) {
  					strlcpy(label, pfat_entry->DIR_Name,
  					    MIN(size,
 -					    sizeof(pfat_bsbpb->BS_VolLab) + 1));
 +					    sizeof(pfat_entry->DIR_Name) + 1));
  					goto endofchecks;
  				}
  			} while((uint8_t *)(++pfat_entry) <
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902131950.n1DJo7Pd079137>