2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

3296. [bug] Named could die with a INSIST failure in

client.c:exit_check. [RT #28346]
This commit is contained in:
Mark Andrews
2012-03-15 11:33:43 +11:00
parent b4733ef5d2
commit d8e73b1c76
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
3296. [bug] Named could die with a INSIST failure in
client.c:exit_check. [RT #28346]
3295. [bug] Adjust isc_time_secondsastimet range check to be more
portable. [RT # 26542]

View File

@@ -240,7 +240,7 @@ ns_client_recursing(ns_client_t *client) {
REQUIRE(client->state == NS_CLIENTSTATE_WORKING);
LOCK(&client->manager->reclock);
client->state = NS_CLIENTSTATE_RECURSING;
client->newstate = client->state = NS_CLIENTSTATE_RECURSING;
ISC_LIST_APPEND(client->manager->recursing, client, rlink);
UNLOCK(&client->manager->reclock);
}