Changeset 76981 in vbox
- Timestamp:
- Jan 24, 2019 5:13:34 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/pxdns.c
r76553 r76981 431 431 432 432 LWIP_ASSERT1(req->pprev_hash == NULL); 433 ++pxdns->active_queries; 434 433 435 chain = &pxdns->request_hash[HASH(req->id)]; 434 436 if ((req->next_hash = *chain) != NULL) { … … 511 513 pxdns_hash_add(pxdns, req); 512 514 pxdns_timeout_add(pxdns, req); 513 ++pxdns->active_queries;514 515 515 516 sys_mutex_unlock(&pxdns->lock); … … 524 525 pxdns_hash_del(pxdns, req); 525 526 pxdns_timeout_del(pxdns, req); 526 --pxdns->active_queries;527 527 528 528 sys_mutex_unlock(&pxdns->lock); … … 552 552 pxdns_hash_del(pxdns, req); 553 553 pxdns_timeout_del(pxdns, req); 554 --pxdns->active_queries;555 554 } 556 555
Note:
See TracChangeset
for help on using the changeset viewer.