Skip to content
Snippets Groups Projects
Commit 787acdf0 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

knot/dnssec: add missing function return check

parent 91e6e781
No related branches found
No related tags found
No related merge requests found
Pipeline #39954 failed
......@@ -45,6 +45,9 @@ static int sign_init(const zone_contents_t *zone, zone_sign_flags_t flags, zone_
if (roll_flags & KEY_ROLL_DO_NSEC3RESALT) {
r = knot_dnssec_nsec3resalt(ctx, &reschedule->last_nsec3resalt, &reschedule->next_nsec3resalt);
if (r != KNOT_EOK) {
return r;
}
}
// perform key rollover if needed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment