From: root Date: Wed, 4 Aug 2010 20:37:17 +0000 (+0400) Subject: fix crash on log print. X-Git-Tag: v1.2-rc1~526^2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab33034266d7cb6f43386d3d7ed119eb4f1e0f33;p=thirdparty%2Ffreeswitch.git fix crash on log print. --- diff --git a/src/mod/endpoints/mod_h323/mod_h323.h b/src/mod/endpoints/mod_h323/mod_h323.h index 9383d03b86..087540c509 100644 --- a/src/mod/endpoints/mod_h323/mod_h323.h +++ b/src/mod/endpoints/mod_h323/mod_h323.h @@ -582,7 +582,8 @@ H323Channel * FSH323_T38Capability::CreateChannel( switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG,"FSH323_T38Capability::CreateChannel %p sessionID= %u direction=%s [%p]\n" , &connection , sessionID - , GetDirections[direction]); + , GetDirections[direction] + , this); return connection.CreateRealTimeLogicalChannel(*this, direction, sessionID, params); }