130. [bug] Log messages reporting an out-of-range serial number
did not include the out-of-range number but the
following token. [RT #2076]
+1130. [bug] Log messages reporting an out-of-range serial number
+ did not include the out-of-range number but the
+ following token. [RT #2076]
+
1129. [bug] Multithreaded servers could crash under heavy
resolution load due to a race condition. [RT #2018]
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: lex.c,v 1.66 2001/07/12 03:51:14 marka Exp $ */
+/* $Id: lex.c,v 1.66.2.1 2001/11/16 19:00:37 gson Exp $ */
#include <config.h>
else if (expect == isc_tokentype_number)
options |= ISC_LEXOPT_NUMBER;
result = isc_lex_gettoken(lex, options, token);
+ if (result == ISC_R_RANGE)
+ isc_lex_ungettoken(lex, token);
if (result != ISC_R_SUCCESS)
return (result);