+1161. [bug] named-checkzone looped on unbalanced brackets.
+ [RT #2248]
+
1160. [bug] Generating Diffie-Hellman keys longer than 1024
bits could fail. [RT #2241]
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: lex.c,v 1.66.2.2 2001/11/22 01:23:19 marka Exp $ */
+/* $Id: lex.c,v 1.66.2.3 2001/12/13 06:17:34 bwelling Exp $ */
#include <config.h>
source->at_eof)
{
if ((options & ISC_LEXOPT_DNSMULTILINE) != 0 &&
- lex->paren_count != 0)
+ lex->paren_count != 0) {
+ lex->paren_count = 0;
return (ISC_R_UNBALANCED);
+ }
if ((options & ISC_LEXOPT_EOF) != 0) {
tokenp->type = isc_tokentype_eof;
return (ISC_R_SUCCESS);
lex->last_was_eol = ISC_FALSE;
if ((options & ISC_LEXOPT_DNSMULTILINE) != 0 &&
lex->paren_count != 0) {
+ lex->paren_count = 0;
result = ISC_R_UNBALANCED;
goto done;
}