[svn-commits] mmichelson: branch 1.6.1 r165324 - in /branches/1.6.1: ./ apps/ res/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Dec 17 15:25:33 CST 2008


Author: mmichelson
Date: Wed Dec 17 15:25:32 2008
New Revision: 165324

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

................
r165318 | mmichelson | 2008-12-17 15:17:20 -0600 (Wed, 17 Dec 2008) | 15 lines

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

........
r165255 | mmichelson | 2008-12-17 14:51:38 -0600 (Wed, 17 Dec 2008) | 7 lines

Fix some memory leaks found while looking at how realtime
configs are handled.

Also cleaned up some coding guidelines violations in app_realtime.c,
mostly related to spacing


........

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

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_directory.c
    branches/1.6.1/apps/app_queue.c
    branches/1.6.1/apps/app_voicemail.c
    branches/1.6.1/res/res_realtime.c

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

Modified: branches/1.6.1/apps/app_directory.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_directory.c?view=diff&rev=165324&r1=165323&r2=165324
==============================================================================
--- branches/1.6.1/apps/app_directory.c (original)
+++ branches/1.6.1/apps/app_directory.c Wed Dec 17 15:25:32 2008
@@ -383,6 +383,9 @@
 		if (!cat) {
 			ast_log(LOG_WARNING, "Out of memory\n");
 			ast_config_destroy(cfg);
+			if (rtdata) {
+				ast_config_destroy(rtdata);
+			}
 			return NULL;
 		}
 		ast_category_append(cfg, cat);

Modified: branches/1.6.1/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_queue.c?view=diff&rev=165324&r1=165323&r2=165324
==============================================================================
--- branches/1.6.1/apps/app_queue.c (original)
+++ branches/1.6.1/apps/app_queue.c Wed Dec 17 15:25:32 2008
@@ -2032,8 +2032,12 @@
 
 	/*If the queue is a realtime queue, check to see if it's still defined in real time*/
 	if (q->realtime) {
-		if (!ast_load_realtime("queues", "name", q->name, SENTINEL))
+		struct ast_variable *var;
+		if (!(var = ast_load_realtime("queues", "name", q->name, SENTINEL))) {
 			q->dead = 1;
+		} else {
+			ast_variables_destroy(var);
+		}
 	}
 
 	if (q->dead) {	

Modified: branches/1.6.1/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_voicemail.c?view=diff&rev=165324&r1=165323&r2=165324
==============================================================================
--- branches/1.6.1/apps/app_voicemail.c (original)
+++ branches/1.6.1/apps/app_voicemail.c Wed Dec 17 15:25:32 2008
@@ -9610,6 +9610,8 @@
 		"=============================================================\n"
 		"\n");
 
+	ast_config_destroy(cfg);
+
 	return CLI_SUCCESS;
 }
 

Modified: branches/1.6.1/res/res_realtime.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/res/res_realtime.c?view=diff&rev=165324&r1=165323&r2=165324
==============================================================================
--- branches/1.6.1/res/res_realtime.c (original)
+++ branches/1.6.1/res/res_realtime.c Wed Dec 17 15:25:32 2008
@@ -43,7 +43,7 @@
 static char *cli_realtime_load(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a) 
 {
 #define CRL_HEADER_FORMAT "%30s  %-30s\n"
-	struct ast_variable *var=NULL;
+	struct ast_variable *var = NULL, *orig_var = NULL;
 
 	switch (cmd) {
 	case CLI_INIT:
@@ -66,6 +66,7 @@
 	if (var) {
 		ast_cli(a->fd, CRL_HEADER_FORMAT, "Column Name", "Column Value");
 		ast_cli(a->fd, CRL_HEADER_FORMAT, "--------------------", "--------------------");
+		orig_var = var;
 		while (var) {
 			ast_cli(a->fd, CRL_HEADER_FORMAT, var->name, var->value);
 			var = var->next;
@@ -73,6 +74,7 @@
 	} else {
 		ast_cli(a->fd, "No rows found matching search criteria.\n");
 	}
+	ast_variables_destroy(orig_var);
 	return CLI_SUCCESS;
 }
 




More information about the svn-commits mailing list