mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-12 13:43:05 -04:00
Merge branch '703-resource-leak-in-dlz_filesystem_driver-c-v9_11' into 'v9_11'
Resolve "resource leak in dlz_filesystem_driver.c" See merge request isc-projects/bind9!1090
This commit is contained in:
commit
e0824ab0d0
1 changed files with 2 additions and 1 deletions
|
|
@ -654,7 +654,8 @@ fs_allnodes(const char *zone, void *driverarg, void *dbdata,
|
|||
ISC_LIST_INIT(*dir_list);
|
||||
|
||||
if (create_path(zone, NULL, NULL, cd, &basepath) != ISC_R_SUCCESS) {
|
||||
return (ISC_R_NOTFOUND);
|
||||
result = ISC_R_NOTFOUND;
|
||||
goto complete_allnds;
|
||||
}
|
||||
|
||||
/* remove path separator at end of path so stat works properly */
|
||||
|
|
|
|||
Loading…
Reference in a new issue