Initialize rrbuffer from *target, like the adjacent savedbuffer, to
silence a scan-build uninitialized-read false positive:
lib/dns/rdataset.c:423:3: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage]
Assisted-by: Claude:claude-opus-4-8
bool partial, unsigned int options, unsigned int *countp) {
isc_result_t result;
isc_buffer_t savedbuffer = *target;
- isc_buffer_t rrbuffer;
+ isc_buffer_t rrbuffer = *target;
dns_fixedname_t fixed;
dns_name_t *name = NULL;