[Freeswitch-svn] [commit] r8611 - in freeswitch/trunk/libs/sofia-sip: . libsofia-sip-ua/msg

Freeswitch SVN mikej at freeswitch.org
Sun May 25 09:54:56 EDT 2008


Author: mikej
Date: Sun May 25 09:54:56 2008
New Revision: 8611

Modified:
   freeswitch/trunk/libs/sofia-sip/.update
   freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/msg/msg_mime.c

Log:
Tue May 20 09:30:06 EDT 2008  Pekka.Pessi at nokia.com
  * msg_mime.c: fixed klocwork issues



Modified: freeswitch/trunk/libs/sofia-sip/.update
==============================================================================
--- freeswitch/trunk/libs/sofia-sip/.update	(original)
+++ freeswitch/trunk/libs/sofia-sip/.update	Sun May 25 09:54:56 2008
@@ -1 +1 @@
-Sun May 25 09:53:58 EDT 2008
+Sun May 25 09:54:31 EDT 2008

Modified: freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/msg/msg_mime.c
==============================================================================
--- freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/msg/msg_mime.c	(original)
+++ freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/msg/msg_mime.c	Sun May 25 09:54:56 2008
@@ -1871,8 +1871,10 @@
 
   b = msg_params_dup(&c->c_params, o->c_params, b, xtra);
   MSG_STRING_DUP(b, c->c_type, o->c_type);
-  c->c_subtype = strchr(c->c_type, '/');
-  c->c_subtype++;
+
+  c->c_subtype = c->c_type ? strchr(c->c_type, '/') : NULL;
+  if (c->c_subtype)
+    c->c_subtype++;
 
   assert(b <= end); (void)end;
 



More information about the Freeswitch-svn mailing list