提交 df07a833 编写于 作者: H Hendrik Leppkes 提交者: Michael Niedermayer

ftp: favor strtoll over atoll

Both strtoll and atoll have different names on MSVC, and strtoll has a
compatibility layer in place for this case.

Fixes compilation on MSVC.
Signed-off-by: NMichael Niedermayer <michaelni@gmx.at>
上级 e32bbd41
......@@ -332,7 +332,7 @@ static int ftp_file_size(FTPContext *s)
if ((err = ffurl_write(s->conn_control, buf, strlen(buf))) < 0)
return err;
if (ftp_status(s, NULL, NULL, NULL, &res, 213) == 213) {
s->filesize = atoll(&res[4]);
s->filesize = strtoll(&res[4], NULL, 10);
} else {
s->filesize = -1;
av_free(res);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册