2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-23 02:28:55 +00:00

4350. [contrib] Declare result in dlz_filesystem_dynamic.c.

This commit is contained in:
Mark Andrews 2016-04-29 10:08:50 +10:00
parent ab83387727
commit cd6eeeb827
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,5 @@
4350. [contrib] Declare result in dlz_filesystem_dynamic.c.
4349. [contrib] kasp2policy: A python script to create a DNSSEC
policy file from an OpenDNSSEC KASP XML file.

View File

@ -825,6 +825,7 @@ isc_result_t
dlz_create(const char *dlzname, unsigned int argc, char *argv[],
void **dbdata, ...)
{
isc_result_t result = ISC_R_NOMEMORY;
config_data_t *cd;
char *endp;
int len;
@ -933,7 +934,7 @@ dlz_create(const char *dlzname, unsigned int argc, char *argv[],
dlz_destroy(cd);
/* return error */
return (ISC_R_NOMEMORY);
return (result);
}
void