[FFmpeg-cvslog] libavutil/mem: use size_t for the length in av_strdup()
Michael Niedermayer
git at videolan.org
Sun May 10 16:22:21 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun May 10 16:06:50 2015 +0200| [4950bd4ebedbb6289734234bb2a719820f565c41] | committer: Michael Niedermayer
libavutil/mem: use size_t for the length in av_strdup()
the string length is not constrained to INT_MAX
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4950bd4ebedbb6289734234bb2a719820f565c41
---
libavutil/mem.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/mem.c b/libavutil/mem.c
index 5fd2395..da291fb 100644
--- a/libavutil/mem.c
+++ b/libavutil/mem.c
@@ -266,7 +266,7 @@ char *av_strdup(const char *s)
{
char *ptr = NULL;
if (s) {
- int len = strlen(s) + 1;
+ size_t len = strlen(s) + 1;
ptr = av_realloc(NULL, len);
if (ptr)
memcpy(ptr, s, len);
More information about the ffmpeg-cvslog
mailing list