svn commit: r265145 - head/lib/libcapsicum

Pawel Jakub Dawidek pjd at FreeBSD.org
Wed Apr 30 09:58:29 UTC 2014


Author: pjd
Date: Wed Apr 30 09:58:28 2014
New Revision: 265145
URL: http://svnweb.freebsd.org/changeset/base/265145

Log:
  Don't forget to remember previous element at the end of the loop.
  
  Reported by:	brueffer
  Found with:	Coverity Prevent(tm)
  CID:		1135301

Modified:
  head/lib/libcapsicum/libcapsicum_dns.c

Modified: head/lib/libcapsicum/libcapsicum_dns.c
==============================================================================
--- head/lib/libcapsicum/libcapsicum_dns.c	Wed Apr 30 09:57:38 2014	(r265144)
+++ head/lib/libcapsicum/libcapsicum_dns.c	Wed Apr 30 09:58:28 2014	(r265145)
@@ -247,6 +247,7 @@ cap_getaddrinfo(cap_channel_t *chan, con
 			prevai->ai_next = curai;
 		else if (firstai == NULL)
 			firstai = curai;
+		prevai = curai;
 	}
 	nvlist_destroy(nvl);
 	if (curai == NULL && nvlai != NULL) {


More information about the svn-src-all mailing list