Skip to content

Silence CID 464884 (REVERSE_INULL)

Mark Andrews requested to merge marka-cleanup-cid-464884 into main

*** CID 464884: Null pointer dereferences (REVERSE_INULL) /bin/tests/system/dyndb/driver/db.c: 644 in create_db() 638 639 *dbp = (dns_db_t *)sampledb; 640 641 return (ISC_R_SUCCESS); 642 643 cleanup: CID 464884: Null pointer dereferences (REVERSE_INULL) Null-checking "sampledb" suggests that it may be null, but it has already been dereferenced on all paths leading to the check. 644 if (sampledb != NULL) { 645 if (dns_name_dynamic(&sampledb->common.origin)) { 646 dns_name_free(&sampledb->common.origin, mctx); 647 } 648 649 isc_mem_putanddetach(&sampledb->common.mctx, sampledb,

Merge request reports