svn commit: r238565 - head/sys/geom

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Jul 18 07:26:21 UTC 2012


Author: trasz
Date: Wed Jul 18 07:26:20 2012
New Revision: 238565
URL: http://svn.freebsd.org/changeset/base/238565

Log:
  Add missing free.

Modified:
  head/sys/geom/geom_subr.c

Modified: head/sys/geom/geom_subr.c
==============================================================================
--- head/sys/geom/geom_subr.c	Wed Jul 18 07:07:54 2012	(r238564)
+++ head/sys/geom/geom_subr.c	Wed Jul 18 07:26:20 2012	(r238565)
@@ -621,6 +621,7 @@ g_resize_provider_event(void *arg, int f
 	hh = arg;
 	pp = hh->pp;
 	size = hh->size;
+	g_free(hh);
 
 	G_VALID_PROVIDER(pp);
 	g_trace(G_T_TOPOLOGY, "g_resize_provider_event(%p)", pp);


More information about the svn-src-all mailing list