zhiqli / fastdfs

Automatically exported from code.google.com/p/fastdfs
GNU General Public License v3.0
0 stars 0 forks source link

关于fastdfs-nginx-module_v1.15 对flvstart参数支持BUG,已定位错误点 #51

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
发现fastdfs-nginx-module_v1.15已对flv支持,但有BUG,已解决.
BUG详情如下

common.c
.......
1053                int64_t start;
1054                if (fdfs_strtoll(pStart, &start) == 0)
1055                {
1056                int64_t start = 0;
1057                if (start >= 0 && (start < file_size \
1058                    || file_size < 0))
1059                {
......

1056行关于start重复赋值,应当删除这句

Original issue reported on code.google.com by hailong...@163.com on 28 Aug 2013 at 1:12

GoogleCodeExporter commented 9 years ago
已修复,谢谢反馈!

Original comment by happyfis...@gmail.com on 28 Aug 2013 at 11:03