2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

1208. [bug] dns_master_load*() failed to log a error message if

an error was detected when parsing the ownername of
                        a record.  [RT #2448]
This commit is contained in:
Mark Andrews 2002-02-21 00:51:22 +00:00
parent 011dc51eee
commit fc7fbdf6e6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
1208. [bug] dns_master_load*() failed to log a error message if
an error was detected when parsing the ownername of
a record. [RT #2448]
1207. [bug] libbind: getaddrinfo() could call freeaddrinfo() with
an invalid pointer.

View File

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: master.c,v 1.136 2002/02/21 00:45:09 bwelling Exp $ */
/* $Id: master.c,v 1.137 2002/02/21 00:51:22 marka Exp $ */
#include <config.h>
@ -1116,10 +1116,11 @@ load(dns_loadctx_t *lctx) {
ictx->origin, ISC_FALSE, NULL);
if (MANYERRS(lctx, result)) {
SETRESULT(lctx, result);
LOGITFILE(result, include_file);
read_till_eol = ISC_TRUE;
continue;
} else if (result != ISC_R_SUCCESS)
goto insist_and_cleanup;
goto log_and_cleanup;
/*
* Finish $ORIGIN / $INCLUDE processing if required.