mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 17:40:00 -04:00
4350. [contrib] Declare result in dlz_filesystem_dynamic.c.
(cherry picked from commit cd6eeeb827)
This commit is contained in:
parent
a5e4938f2d
commit
a55c5b08f9
2 changed files with 4 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
4350. [contrib] Declare result in dlz_filesystem_dynamic.c.
|
||||
|
||||
--- 9.10.4 released ---
|
||||
|
||||
--- 9.10.4rc1 released ---
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue