mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-16 11:42:55 -05:00
- Fix #39: In libunbound, leftover logfile is close()d unpredictably.
This commit is contained in:
parent
3499d3c647
commit
1ec96d8f07
2 changed files with 3 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
17 June 2019: Wouter
|
||||
- Master contains version 1.9.3 in development.
|
||||
- Fix #39: In libunbound, leftover logfile is close()d unpredictably.
|
||||
|
||||
12 June 2019: Wouter
|
||||
- Fix another spoolbuf storage code point, in prefetch.
|
||||
|
|
|
|||
|
|
@ -328,6 +328,8 @@ ub_ctx_delete(struct ub_ctx* ctx)
|
|||
ub_randfree(ctx->seed_rnd);
|
||||
alloc_clear(&ctx->superalloc);
|
||||
traverse_postorder(&ctx->queries, delq, NULL);
|
||||
if(ctx->logfile_override)
|
||||
log_file(NULL);
|
||||
free(ctx);
|
||||
#ifdef USE_WINSOCK
|
||||
WSACleanup();
|
||||
|
|
|
|||
Loading…
Reference in a new issue