[asterisk-commits] russell: branch 1.6.2 r186233 - in /branches/1.6.2: ./ cdr/cdr_radius.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Apr 2 21:11:20 CDT 2009


Author: russell
Date: Thu Apr  2 21:11:17 2009
New Revision: 186233

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=186233
Log:
Merged revisions 186230 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r186230 | russell | 2009-04-02 21:03:48 -0500 (Thu, 02 Apr 2009) | 29 lines

Merged revisions 186229 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r186229 | russell | 2009-04-02 20:57:44 -0500 (Thu, 02 Apr 2009) | 21 lines

Fix a memory leak in cdr_radius.

I came across this while doing some testing of my ast_channel_ao2 branch.
After running a test overnight that generated over 5 million calls, Asterisk
had taken up about 1 GB of my system memory.  So, I re-ran the test with
MALLOC_DEBUG turned on.  However, it showed no leaks in Asterisk during the
test, even though Asterisk was still consuming it somehow.

Instead, I turned to valgrind, which when run with --leak-check=full, told
me exactly where the leak came from, which was from allocations inside the
radiusclient-ng library.  This explains why MALLOC_DEBUG did not report it.

After a bit of analysis, I found that we were leaking a little bit of memory
every time a CDR record was passed to cdr_radius.

I don't actually have a radius server set up to receive CDR records.  However,
I always have my development systems compile and install all modules.  In
addition to making sure there are not build errors across modules, always
loading modules helps find bugs like this, too, so it is strongly recommend for
all developers.

........

................

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/cdr/cdr_radius.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/cdr/cdr_radius.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/cdr/cdr_radius.c?view=diff&rev=186233&r1=186232&r2=186233
==============================================================================
--- branches/1.6.2/cdr/cdr_radius.c (original)
+++ branches/1.6.2/cdr/cdr_radius.c Thu Apr  2 21:11:17 2009
@@ -205,12 +205,18 @@
 
 	if (build_radius_record(&tosend, cdr)) {
 		ast_debug(1, "Unable to create RADIUS record. CDR not recorded!\n");
-		return result;
+		goto return_cleanup;
 	}
 
 	result = rc_acct(rh, 0, tosend);
-	if (result != OK_RC)
+	if (result != OK_RC) {
 		ast_log(LOG_ERROR, "Failed to record Radius CDR record!\n");
+	}
+
+return_cleanup:
+	if (tosend) {
+		rc_avpair_free(tosend);
+	}
 
 	return result;
 }




More information about the asterisk-commits mailing list