ffmpeg | branch: release/2.6 | Michael Niedermayer <michae...@gmx.at> | Tue May 12 03:59:30 2015 +0200| [8d0f079c45a3ce410095730f8f3f4853079b96c8] | committer: Michael Niedermayer
tools/graph2dot: use larger data types than int for array/string sizes Signed-off-by: Michael Niedermayer <michae...@gmx.at> (cherry picked from commit acf4925f444636a828534ab47d0f86c21a7a9b4e) Signed-off-by: Michael Niedermayer <michae...@gmx.at> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8d0f079c45a3ce410095730f8f3f4853079b96c8 --- tools/graph2dot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/graph2dot.c b/tools/graph2dot.c index 5552b34..23c7331 100644 --- a/tools/graph2dot.c +++ b/tools/graph2dot.c @@ -153,7 +153,7 @@ int main(int argc, char **argv) /* read from infile and put it in a buffer */ { - unsigned int count = 0; + int64_t count = 0; struct line *line, *last_line, *first_line; char *p; last_line = first_line = av_malloc(sizeof(struct line)); @@ -181,7 +181,7 @@ int main(int argc, char **argv) } p = graph_string; for (line = first_line; line->next; line = line->next) { - unsigned int l = strlen(line->data); + size_t l = strlen(line->data); memcpy(p, line->data, l); p += l; } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog