[svn-commits] branch 1.2 - r8194 /branches/1.2/apps/app_meetme.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Wed Jan 18 14:02:07 MST 2006


Author: mogorman
Date: Wed Jan 18 15:02:06 2006
New Revision: 8194

URL: http://svn.digium.com/view/asterisk?rev=8194&view=rev
Log:
Solves issue with the login proccess in meetme
patch from 6136

Modified:
    branches/1.2/apps/app_meetme.c

Modified: branches/1.2/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_meetme.c?rev=8194&r1=8193&r2=8194&view=diff
==============================================================================
--- branches/1.2/apps/app_meetme.c (original)
+++ branches/1.2/apps/app_meetme.c Wed Jan 18 15:02:06 2006
@@ -1630,7 +1630,8 @@
 			if (dynamic_pin) {
 				if (dynamic_pin[0] == 'q') {
 					/* Query the user to enter a PIN */
-					ast_app_getdata(chan, "conf-getpin", dynamic_pin, AST_MAX_EXTENSION - 1, 0);
+					if (ast_app_getdata(chan, "conf-getpin", dynamic_pin, AST_MAX_EXTENSION - 1, 0) < 0)
+						return NULL;
 				}
 				cnf = build_conf(confno, dynamic_pin, "", make, dynamic);
 			} else {



More information about the svn-commits mailing list