]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix crash on log print.
authorroot <root@proxy-2.(none)>
Wed, 4 Aug 2010 20:37:17 +0000 (00:37 +0400)
committerroot <root@proxy-2.(none)>
Wed, 4 Aug 2010 20:37:17 +0000 (00:37 +0400)
src/mod/endpoints/mod_h323/mod_h323.h

index 9383d03b86e4d83a510f2cc52eefb0c3d14e5051..087540c509b3d643c56c2548a6b724a997a60d4b 100644 (file)
@@ -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);
 }