[svn-commits] dlee: branch dlee/stasis-core r382286 - /team/dlee/stasis-core/main/channel.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Feb 28 14:27:00 CST 2013


Author: dlee
Date: Thu Feb 28 14:26:56 2013
New Revision: 382286

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=382286
Log:
fixed a typ

Modified:
    team/dlee/stasis-core/main/channel.c

Modified: team/dlee/stasis-core/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/team/dlee/stasis-core/main/channel.c?view=diff&rev=382286&r1=382285&r2=382286
==============================================================================
--- team/dlee/stasis-core/main/channel.c (original)
+++ team/dlee/stasis-core/main/channel.c Thu Feb 28 14:26:56 2013
@@ -272,7 +272,7 @@
 	}
 	event->variable = ast_strdup(name);
 	event->value = ast_strdup(value);
-	if (event->channel_name == NULL || event->uniquid == NULL || event->variable == NULL || event->value == NULL) {
+	if (event->channel_name == NULL || event->uniqueid == NULL || event->variable == NULL || event->value == NULL) {
 		ast_log(LOG_ERROR, "Allocation failed\n");
 		return;
 	}




More information about the svn-commits mailing list