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

remove an uninitialized variable warning

This commit is contained in:
Brian Wellington
2000-11-13 21:29:27 +00:00
parent 5f16d77279
commit 1f2f5445ec

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: lex.c,v 1.43 2000/11/13 04:09:40 marka Exp $ */
/* $Id: lex.c,v 1.44 2000/11/13 21:29:27 bwelling Exp $ */
#include <config.h>
@@ -446,6 +446,8 @@ isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
}
if (!source->at_eof)
c = isc_buffer_getuint8(source->pushback);
else
c = EOF;
if (c == '\n')
source->line++;