[asterisk-commits] kpfleming: trunk r77820 - /trunk/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jul 31 09:55:37 CDT 2007
Author: kpfleming
Date: Tue Jul 31 09:55:37 2007
New Revision: 77820
URL: http://svn.digium.com/view/asterisk?view=rev&rev=77820
Log:
use a different method for overriding the send_digit_begin pointer, as the old one fails to compile on my 64-bit system with gcc-4.1 and --enable-dev-mode turned on
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=77820&r1=77819&r2=77820
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Jul 31 09:55:37 2007
@@ -18654,11 +18654,11 @@
return AST_MODULE_LOAD_DECLINE;
/* Prepare the version that does not require DTMF BEGIN frames.
- * We need to use tricks such as memcopy and casts because the variable
+ * We need to use tricks such as memcpy and casts because the variable
* has const fields.
*/
memcpy(&sip_tech_info, &sip_tech, sizeof(sip_tech));
- *((void **)&sip_tech_info.send_digit_begin) = NULL;
+ memset((void *) &sip_tech_info.send_digit_begin, 0, sizeof(sip_tech_info.send_digit_begin));
/* Make sure we can register our sip channel type */
if (ast_channel_register(&sip_tech)) {
More information about the asterisk-commits
mailing list