Files
bind9/lib/dns
Matthijs Mekking 7e9fb5deda Fix CID 332468: Memory - illegal accesses (UNINIT)
*** CID 332468:  Memory - illegal accesses  (UNINIT)
/lib/dns/zone.c: 6613 in dns_zone_getdnsseckeys()
6607                 ISC_LIST_UNLINK(dnskeys, k1, link);
6608                 ISC_LIST_APPEND(*keys, k1, link);
6609             }
6610         }
6611     6612     failure:
>>>     CID 332468:  Memory - illegal accesses  (UNINIT)
>>>     Using uninitialized value "keyset.methods" when calling
>>>     "dns_rdataset_isassociated".
6613         if (dns_rdataset_isassociated(&keyset)) {
6614             dns_rdataset_disassociate(&keyset);
6615         }
6616         if (node != NULL) {
6617             dns_db_detachnode(db, &node);
6618         }

Fix by initializing the 'keyset' with 'dns_rdataset_init'.
2021-07-01 14:59:00 +02:00
..
2021-07-01 14:48:23 +02:00
2021-07-01 15:01:05 +10:00
2021-07-01 14:48:47 +02:00
2021-04-19 14:32:53 +02:00
2020-11-11 15:59:56 -03:00
2021-07-01 14:48:47 +02:00
2021-05-26 08:49:30 +10:00
2021-02-23 09:18:55 +01:00
2021-07-01 14:48:23 +02:00
2020-12-01 23:19:20 +11:00
2020-11-11 15:59:56 -03:00
2020-11-11 15:59:56 -03:00
2021-05-20 09:52:53 +02:00
2021-01-28 12:18:31 +11:00