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
2015-04-10 14:25:14 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0a7cea063c0b9b460587e3ad55508a10f38a948d
0a7cea06
1 parent
5c00ce8a
refine http read, support c style api
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
3 行增加
和
2 行删除
trunk/src/app/srs_app_http.cpp
trunk/src/app/srs_app_http.cpp
查看文件 @
0a7cea0
...
...
@@ -1267,8 +1267,9 @@ int SrsHttpMessage::body_read_all(string& body)
return
ret
;
}
srs_assert
(
nb_read
>
0
);
body
.
append
(
buf
,
nb_read
);
if
(
nb_read
>
0
)
{
body
.
append
(
buf
,
nb_read
);
}
}
return
ret
;
...
...
请
注册
或
登录
后发表评论