rpms/bind/devel bind-9.3.2-bz173961.patch,NONE,1.1

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Apr 4 20:54:01 UTC 2006


Author: jvdias

Update of /cvs/dist/rpms/bind/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv19236

Added Files:
	bind-9.3.2-bz173961.patch 
Log Message:
fix resolver.c ncache_adderesult segfault reported in addenda to bug 173961

bind-9.3.2-bz173961.patch:
 resolver.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE bind-9.3.2-bz173961.patch ---
--- bind-9.3.2/lib/dns/resolver.c.bz173961	2005-10-13 21:38:48.000000000 -0400
+++ bind-9.3.2/lib/dns/resolver.c	2006-04-04 14:23:26.000000000 -0400
@@ -3794,7 +3794,7 @@
 			result = ISC_R_SUCCESS;
 		}
 	} else if (result == ISC_R_SUCCESS) {
-		if (NXDOMAIN(ardataset))
+	        if ((ardataset != NULL) && NXDOMAIN(ardataset))
 			*eresultp = DNS_R_NCACHENXDOMAIN;
 		else
 			*eresultp = DNS_R_NCACHENXRRSET;




More information about the fedora-cvs-commits mailing list