Fix segfault in host/nslookup (#878139)
Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
parent
0a46a99c61
commit
2cc782fdff
@ -26,7 +26,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
|
|||||||
Name: bind
|
Name: bind
|
||||||
License: ISC
|
License: ISC
|
||||||
Version: 9.9.3
|
Version: 9.9.3
|
||||||
Release: 0.6.%{PREVER}%{?dist}
|
Release: 0.7.%{PREVER}%{?dist}
|
||||||
Epoch: 32
|
Epoch: 32
|
||||||
Url: http://www.isc.org/products/BIND/
|
Url: http://www.isc.org/products/BIND/
|
||||||
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
@ -779,6 +779,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 17 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.3-0.7.rc2
|
||||||
|
- Fix segfault in host/nslookup (#878139)
|
||||||
|
|
||||||
* Mon May 13 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.3-0.6.rc2
|
* Mon May 13 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.3-0.6.rc2
|
||||||
- update to 9.9.3rc2
|
- update to 9.9.3rc2
|
||||||
- part of bind97-exportlib.patch not needed any more
|
- part of bind97-exportlib.patch not needed any more
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
fputs(l->cmdline, stdout);
|
fputs(l->cmdline, stdout);
|
||||||
- printf(";; connection timed out; no servers could be "
|
- printf(";; connection timed out; no servers could be "
|
||||||
- "reached\n");
|
- "reached\n");
|
||||||
+ if (!next_origin(query)) {
|
+ if (!next_origin(ISC_LIST_HEAD(l->q))) {
|
||||||
+ printf(";; connection timed out; no servers could be "
|
+ printf(";; connection timed out; no servers could be "
|
||||||
+ "reached\n");
|
+ "reached\n");
|
||||||
+ } else {
|
+ } else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user