Browse Source

avformat/url: Use size_t for len from strlen()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 95efc65129)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4.10
Michael Niedermayer 10 years ago
parent
commit
2c50cc497d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/url.c

+ 1
- 1
libavformat/url.c View File

@@ -68,7 +68,7 @@ int ff_url_join(char *str, int size, const char *proto,
av_strlcatf(str, size, ":%d", port);
if (fmt) {
va_list vl;
int len = strlen(str);
size_t len = strlen(str);

va_start(vl, fmt);
vsnprintf(str + len, size > len ? size - len : 0, fmt, vl);


Loading…
Cancel
Save