mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix endless recursion in ti(4)'s ti_ifmedia_upd(), found by clang 3.7.0.
This commit is contained in:
parent
298022457a
commit
42e2071b63
1 changed files with 1 additions and 1 deletions
|
|
@ -3350,7 +3350,7 @@ ti_ifmedia_upd(struct ifnet *ifp)
|
|||
|
||||
sc = ifp->if_softc;
|
||||
TI_LOCK(sc);
|
||||
error = ti_ifmedia_upd(ifp);
|
||||
error = ti_ifmedia_upd_locked(ifp);
|
||||
TI_UNLOCK(sc);
|
||||
|
||||
return (error);
|
||||
|
|
|
|||
Loading…
Reference in a new issue