PERFORCE change 97357 for review

Todd Miller millert at FreeBSD.org
Wed May 17 18:40:49 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=97357

Change 97357 by millert at 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;
 	}


More information about the trustedbsd-cvs mailing list