mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Off by one error in reading mmap data.
Submitted by: Martin Kraemer <Martin.Kraemer@Fujitsu-Siemens.com>
This commit is contained in:
parent
0c95c70577
commit
47ecee5e83
1 changed files with 2 additions and 1 deletions
|
|
@ -219,11 +219,12 @@ fastfind
|
|||
p = path + count;
|
||||
foundchar = p - 1;
|
||||
|
||||
for (;;) {
|
||||
#ifdef FF_MMAP
|
||||
for (; len > 0;) {
|
||||
c = (u_char)*paddr++;
|
||||
len--;
|
||||
#else
|
||||
for (;;) {
|
||||
c = getc(fp);
|
||||
#endif /* FF_MMAP */
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue