[asterisk-commits] qwell: branch 10-digiumphones r378912 - /branches/10-digiumphones/main/pbx.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jan 10 16:10:31 CST 2013


Author: qwell
Date: Thu Jan 10 16:10:30 2013
New Revision: 378912

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=378912
Log:
Fix compile error, due to different var names on merge.

Modified:
    branches/10-digiumphones/main/pbx.c

Modified: branches/10-digiumphones/main/pbx.c
URL: http://svnview.digium.com/svn/asterisk/branches/10-digiumphones/main/pbx.c?view=diff&rev=378912&r1=378911&r2=378912
==============================================================================
--- branches/10-digiumphones/main/pbx.c (original)
+++ branches/10-digiumphones/main/pbx.c Thu Jan 10 16:10:30 2013
@@ -11069,9 +11069,9 @@
 	if (device_state_sub) {
 		device_state_sub = ast_event_unsubscribe(device_state_sub);
 	}
-	if (device_state_tps) {
-		ast_taskprocessor_unreference(device_state_tps);
-		device_state_tps = NULL;
+	if (extension_state_tps) {
+		ast_taskprocessor_unreference(extension_state_tps);
+		extension_state_tps = NULL;
 	}
 
 	/* Unregister builtin applications */




More information about the asterisk-commits mailing list