mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Free allocated buffer at siodetach().
MFC after: 3 days
This commit is contained in:
parent
6a6230d2f6
commit
369bbb548d
2 changed files with 8 additions and 0 deletions
|
|
@ -799,6 +799,10 @@ siodetach(dev)
|
|||
} else {
|
||||
if (com->ibuf != NULL)
|
||||
free(com->ibuf, M_DEVBUF);
|
||||
#ifdef PC98
|
||||
if (com->obuf1 != NULL)
|
||||
free(com->obuf1, M_DEVBUF);
|
||||
#endif
|
||||
device_set_softc(dev, NULL);
|
||||
free(com, M_DEVBUF);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -799,6 +799,10 @@ siodetach(dev)
|
|||
} else {
|
||||
if (com->ibuf != NULL)
|
||||
free(com->ibuf, M_DEVBUF);
|
||||
#ifdef PC98
|
||||
if (com->obuf1 != NULL)
|
||||
free(com->obuf1, M_DEVBUF);
|
||||
#endif
|
||||
device_set_softc(dev, NULL);
|
||||
free(com, M_DEVBUF);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue