mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '3513-cid-356329-error-handling-in-dnssec-signzone.c' into 'main'
Resolve "CID 356329: Error handling issues in bin/dnssec/dnssec-signzone.c" Closes #3513 See merge request isc-projects/bind9!6714
This commit is contained in:
commit
a84c422fc8
1 changed files with 4 additions and 1 deletions
|
|
@ -3729,7 +3729,10 @@ main(int argc, char *argv[]) {
|
|||
|
||||
isc_managers_create(&mctx, ntasks, &loopmgr, &netmgr, &taskmgr);
|
||||
|
||||
isc_task_create(taskmgr, &write_task, 0);
|
||||
result = isc_task_create(taskmgr, &write_task, 0);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
fatal("failed to create task: %s", isc_result_totext(result));
|
||||
}
|
||||
|
||||
result = dst_lib_init(mctx, engine);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue