[Freeswitch-svn] [commit] r10748 - freeswitch/trunk/src/mod/applications/mod_commands

FreeSWITCH SVN mcollins at freeswitch.org
Fri Dec 12 20:57:28 PST 2008


Author: mcollins
Date: Fri Dec 12 23:57:27 2008
New Revision: 10748

Log:
api command sent through sched_api was getting the last char lopped off

Modified:
   freeswitch/trunk/src/mod/applications/mod_commands/mod_commands.c

Modified: freeswitch/trunk/src/mod/applications/mod_commands/mod_commands.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_commands/mod_commands.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_commands/mod_commands.c	Fri Dec 12 23:57:27 2008
@@ -2106,7 +2106,7 @@
 			}
 
 			switch_zmalloc(api_task, sizeof(*api_task) + strlen(dcmd) + 1);
-			switch_copy_string(api_task->cmd, dcmd, strlen(dcmd));
+			switch_copy_string(api_task->cmd, dcmd, strlen(dcmd) + 1);
 			api_task->recur = recur;
 
 			id = switch_scheduler_add_task(when, sch_api_callback, (char *) __SWITCH_FUNC__, group, 0, api_task, SSHF_FREE_ARG);



More information about the Freeswitch-svn mailing list