提交 3c079c41 authored 作者: Michael Jerris's avatar Michael Jerris

Tue May 20 09:30:06 EDT 2008 Pekka.Pessi@nokia.com

  * msg_mime.c: fixed klocwork issues



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8611 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 e1f98ec1
Sun May 25 09:53:58 EDT 2008
Sun May 25 09:54:31 EDT 2008
......@@ -1871,8 +1871,10 @@ char *msg_content_type_dup_one(msg_header_t *dst, msg_header_t const *src,
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;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论