mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix range check for rtable id.
This commit is contained in:
parent
0fbccea207
commit
b18b4dabe6
1 changed files with 2 additions and 2 deletions
|
|
@ -1532,7 +1532,7 @@ pfioctl(dev_t dev, u_long cmd, caddr_t addr, int flags, struct proc *p)
|
|||
}
|
||||
|
||||
#ifdef __FreeBSD__ /* ROUTEING */
|
||||
if (rule->rtableid > 0 && rule->rtableid < rt_numfibs)
|
||||
if (rule->rtableid > 0 && rule->rtableid > rt_numfibs)
|
||||
#else
|
||||
if (rule->rtableid > 0 && !rtable_exists(rule->rtableid))
|
||||
#endif
|
||||
|
|
@ -1795,7 +1795,7 @@ pfioctl(dev_t dev, u_long cmd, caddr_t addr, int flags, struct proc *p)
|
|||
|
||||
if (newrule->rtableid > 0 &&
|
||||
#ifdef __FreeBSD__ /* ROUTING */
|
||||
newrule->rtableid < rt_numfibs)
|
||||
newrule->rtableid > rt_numfibs)
|
||||
#else
|
||||
!rtable_exists(newrule->rtableid))
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue