Date: Wed, 17 May 2006 18:39:21 GMT From: Todd Miller <millert@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 97357 for review Message-ID: <200605171839.k4HIdLYN041546@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=97357 Change 97357 by millert@millert_ibook on 2006/05/17 18:38:56 Use correct free function. Affected files ... .. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/ss/avtab.c#8 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/ss/avtab.c#8 (text+ko) ==== @@ -235,7 +235,7 @@ while (cur != NULL) { temp = cur; cur = cur->next; - kfree(temp); + zfree(avtab_node_cachep, (vm_offset_t)temp); } h->htable[i] = NULL; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605171839.k4HIdLYN041546>