[svn-commits] russell: branch 1.4 r123271 - /branches/1.4/main/astobj2.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jun 17 10:48:31 CDT 2008


Author: russell
Date: Tue Jun 17 10:48:31 2008
New Revision: 123271

URL: http://svn.digium.com/view/asterisk?view=rev&rev=123271
Log:
Fix a memory leak in astobj2 that was pointed out by seanbright.  When a container
got destroyed, the underlying bucket list entry for each object that was in the
container at that time did not get free'd.

Modified:
    branches/1.4/main/astobj2.c

Modified: branches/1.4/main/astobj2.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/astobj2.c?view=diff&rev=123271&r1=123270&r2=123271
==============================================================================
--- branches/1.4/main/astobj2.c (original)
+++ branches/1.4/main/astobj2.c Tue Jun 17 10:48:31 2008
@@ -599,8 +599,17 @@
 static void container_destruct(void *_c)
 {
 	struct ao2_container *c = _c;
+	int i;
 
 	ao2_callback(c, OBJ_UNLINK, cd_cb, NULL);
+
+	for (i = 0; i < c->n_buckets; i++) {
+		struct bucket_list *cur;
+
+		while ((cur = AST_LIST_REMOVE_HEAD(&c->buckets[i], entry))) {
+			ast_free(cur);
+		}
+	}
 
 #ifdef AO2_DEBUG
 	ast_atomic_fetchadd_int(&ao2.total_containers, -1);




More information about the svn-commits mailing list