mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-01 22:48:25 +00:00
BUG/MINOR: cfgparse: don't increment linenum on incomplete lines
When fgets() returns an incomplete line we must not increment linenum otherwise line numbers become incorrect. This may happen when parsing files with extremely long lines which require a realloc(). The bug has been present since unbounded line length was supported, so the fix should be backported to older branches.
This commit is contained in:
parent
a941952ae1
commit
40cb26f6ec
@ -1903,12 +1903,14 @@ next_line:
|
||||
file, linenum);
|
||||
err_code |= ERR_ALERT | ERR_FATAL;
|
||||
fatal++;
|
||||
linenum--;
|
||||
continue;
|
||||
}
|
||||
|
||||
readbytes = linesize - 1;
|
||||
linesize = newlinesize;
|
||||
thisline = newline;
|
||||
linenum--;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user