2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

fix memory leak

This commit is contained in:
Bob Halley
1998-12-19 00:22:00 +00:00
parent 7cfb2cec61
commit ea6ace7d0d

View File

@@ -108,10 +108,13 @@ main(int argc, char *argv[]) {
value.as_pointer = mem_strdup(mctx, cp);
result = isc_symtab_define(st, key, 1, value,
exists_policy);
if (trace || result != ISC_R_SUCCESS)
if (trace || result != ISC_R_SUCCESS) {
printf("define('%s', '%s'): %s\n",
key, cp,
isc_result_totext(result));
if (result != ISC_R_SUCCESS)
undefine_action(key, 1, value);
}
}
}
}