[asterisk-commits] file: branch 1.4 r55949 - /branches/1.4/apps/app_meetme.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Wed Feb 21 13:16:35 MST 2007


Author: file
Date: Wed Feb 21 14:16:34 2007
New Revision: 55949

URL: http://svn.digium.com/view/asterisk?view=rev&rev=55949
Log:
Only dispose of the conference if one was created.

Modified:
    branches/1.4/apps/app_meetme.c

Modified: branches/1.4/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=55949&r1=55948&r2=55949
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Wed Feb 21 14:16:34 2007
@@ -2537,8 +2537,10 @@
 					res = conf_run(chan, cnf, confflags.flags, optargs);
 				}
 			}
-			dispose_conf(cnf);
-			cnf = NULL;
+			if (cnf) {
+				dispose_conf(cnf);
+				cnf = NULL;
+			}
 		}
 	} while (allowretry);
 



More information about the asterisk-commits mailing list