for nodata and nxdomain, so it does not crash later.
Thanks to Qifan Zhang, Palo Alto Networks, for the report.
- Fix to check the return value of auth_xfer_create
during fast_reload auth-zone add and change processing.
Thanks to Qifan Zhang, Palo Alto Networks, for the report.
+ - Fix to check for malloc failure in rpz response create,
+ for nodata and nxdomain, so it does not crash later.
+ Thanks to Qifan Zhang, Palo Alto Networks, for the report.
16 June 2026: Wouter
- Fix to disallow $INCLUDE for secondary zones. Start up
0, /* total */
sec_status_insecure,
LDNS_EDE_NONE);
- if(msg->rep)
- msg->rep->authoritative = 1;
+ if(!msg->rep)
+ return NULL;
+ msg->rep->authoritative = 1;
if(!rpz_add_soa(msg->rep, ms, az))
return NULL;
return msg;
0, /* total */
sec_status_insecure,
LDNS_EDE_NONE);
- if(msg->rep)
- msg->rep->authoritative = 1;
+ if(!msg->rep)
+ return NULL;
+ msg->rep->authoritative = 1;
if(!rpz_add_soa(msg->rep, ms, az))
return NULL;
return msg;