Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-05-13 14:32:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9ba786d1aaea9220c3571dc973a7b15f6dc0e729
9ba786d1
1 parent
befde6ac
fix bug of mem leak, free the left msgs if send error
显示空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
3 行增加
和
3 行删除
trunk/src/app/srs_app_edge.cpp
trunk/src/app/srs_app_forward.cpp
trunk/src/app/srs_app_rtmp_conn.cpp
trunk/src/app/srs_app_edge.cpp
查看文件 @
9ba786d
...
...
@@ -493,7 +493,7 @@ int SrsEdgeForwarder::cycle()
if
((
ret
=
client
->
send_and_free_message
(
msg
))
!=
ERROR_SUCCESS
)
{
srs_error
(
"edge publish forwarder send message to server failed. ret=%d"
,
ret
);
break
;
continue
;
}
}
// free the array itself.
...
...
trunk/src/app/srs_app_forward.cpp
查看文件 @
9ba786d
...
...
@@ -371,7 +371,7 @@ int SrsForwarder::forward()
if
((
ret
=
client
->
send_and_free_message
(
msg
))
!=
ERROR_SUCCESS
)
{
srs_error
(
"forwarder send message to server failed. ret=%d"
,
ret
);
break
;
continue
;
}
}
// free the array itself.
...
...
trunk/src/app/srs_app_rtmp_conn.cpp
查看文件 @
9ba786d
...
...
@@ -543,7 +543,7 @@ int SrsRtmpConn::playing(SrsSource* source)
if
((
ret
=
rtmp
->
send_and_free_message
(
msg
))
!=
ERROR_SUCCESS
)
{
srs_error
(
"send message to client failed. ret=%d"
,
ret
);
break
;
continue
;
}
}
// free the array itself.
...
...
请
注册
或
登录
后发表评论