提交 a45f8065 authored 作者: Michael Jerris's avatar Michael Jerris

don't do operations in an assert (re: FSCORE-50)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5985 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 299ab4ba
......@@ -4331,7 +4331,8 @@ SWITCH_STANDARD_APP(conference_function)
char *dfile = NULL;
if (conference->sound_prefix) {
assert((dfile = switch_mprintf("%s/%s", conference->sound_prefix, conference->kicked_sound)));
dfile = switch_mprintf("%s/%s", conference->sound_prefix, conference->kicked_sound);
assert(dfile);
toplay = dfile;
} else {
toplay = conference->kicked_sound;
......
......@@ -2441,7 +2441,8 @@ static JSBool session_construct(JSContext * cx, JSObject * obj, uintN argc, jsva
{
struct js_session *jss = NULL;
assert((jss = malloc(sizeof(*jss))));
jss = malloc(sizeof(*jss));
assert(jss);
memset(jss, 0, sizeof(*jss));
jss->cx = cx;
jss->obj = obj;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论