Free allocated buffer at siodetach().

MFC after:	3 days
This commit is contained in:
Yoshihiro Takahashi 2002-03-10 07:22:42 +00:00
parent 6a6230d2f6
commit 369bbb548d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91986
2 changed files with 8 additions and 0 deletions

View file

@ -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);
}

View file

@ -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);
}