Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Oct 2011 08:40:16 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: bin/161425: commit references a PR
Message-ID:  <201110300840.p9U8eGmc042681@freefall.freebsd.org>

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: bin/161425: commit references a PR
Date: Sun, 30 Oct 2011 08:35:33 +0000 (UTC)

 Author: trociny
 Date: Sun Oct 30 08:35:19 2011
 New Revision: 226929
 URL: http://svn.freebsd.org/changeset/base/226929
 
 Log:
   MFC r226828:
   
   Fix a memory leak in tzload().
   
   PR:		bin/161425
   Reviewed by:	kib
   Approved by:	re (kib)
 
 Modified:
   stable/9/contrib/tzcode/stdtime/localtime.c
 Directory Properties:
   stable/9/contrib/tzcode/   (props changed)
   stable/9/contrib/tzcode/stdtime/   (props changed)
   stable/9/contrib/tzcode/zic/   (props changed)
 
 Modified: stable/9/contrib/tzcode/stdtime/localtime.c
 ==============================================================================
 --- stable/9/contrib/tzcode/stdtime/localtime.c	Sun Oct 30 05:06:14 2011	(r226928)
 +++ stable/9/contrib/tzcode/stdtime/localtime.c	Sun Oct 30 08:35:19 2011	(r226929)
 @@ -450,6 +450,7 @@ register const int	doextend;
  			_close(fid);
  			return -1;
  		}
 +		free(fullname);
  	}
  	u = malloc(sizeof(*u));
  	if (u == NULL)
 _______________________________________________
 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?201110300840.p9U8eGmc042681>