[asterisk-commits] jrose: branch 11 r401830 - in /branches/11: ./ main/utils.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Oct 24 15:33:38 CDT 2013
Author: jrose
Date: Thu Oct 24 15:33:37 2013
New Revision: 401830
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=401830
Log:
utils: Fix memory leaks and missed unregistration of CLI commands on shutdown
Final set of patches in a series of memory leak/cleanup patches by Corey Farrell
(closes issue ASTERISK-22467)
Reported by: Corey Farrell
Patches:
main-utils-1.8.patch uploaded by coreyfarrell (license 5909)
main-utils-11.patch uploaded by coreyfarrell (license 5909)
main-utils-12up.patch uploaded by coreyfarrell (license 5909)
........
Merged revisions 401829 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/11/ (props changed)
branches/11/main/utils.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/11/main/utils.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/main/utils.c?view=diff&rev=401830&r1=401829&r2=401830
==============================================================================
--- branches/11/main/utils.c (original)
+++ branches/11/main/utils.c Thu Oct 24 15:33:37 2013
@@ -1025,9 +1025,6 @@
struct thr_lock_info *lock_info;
struct ast_str *str;
- if (!(str = ast_str_create(4096)))
- return CLI_FAILURE;
-
switch (cmd) {
case CLI_INIT:
e->command = "core show locks";
@@ -1041,7 +1038,10 @@
return NULL;
}
- ast_str_append(&str, 0, "\n"
+ if (!(str = ast_str_create(4096)))
+ return CLI_FAILURE;
+
+ ast_str_append(&str, 0, "\n"
"=======================================================================\n"
"=== %s\n"
"=== Currently Held Locks\n"
@@ -2163,6 +2163,17 @@
return 0;
}
+static void utils_shutdown(void)
+{
+#ifdef HAVE_DEV_URANDOM
+ close(dev_urandom_fd);
+ dev_urandom_fd = -1;
+#endif
+#if defined(DEBUG_THREADS) && !defined(LOW_MEMORY)
+ ast_cli_unregister_multiple(utils_cli, ARRAY_LEN(utils_cli));
+#endif
+}
+
int ast_utils_init(void)
{
#ifdef HAVE_DEV_URANDOM
@@ -2174,6 +2185,7 @@
ast_cli_register_multiple(utils_cli, ARRAY_LEN(utils_cli));
#endif
#endif
+ ast_register_atexit(utils_shutdown);
return 0;
}
More information about the asterisk-commits
mailing list