[SCM] libav/experimental: use sizeof in snprintf (note the changed code is all under #if 0)
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:09:38 UTC 2013
The following commit has been merged in the experimental branch:
commit e1c48b7aaedc5deb6f22ced02dfe4f356bf3f421
Author: Michael Niedermayer <michaelni at gmx.at>
Date: Mon Nov 19 20:18:30 2007 +0000
use sizeof in snprintf (note the changed code is all under #if 0)
Originally committed as revision 11063 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c
index b51603f..d9e44f2 100644
--- a/libavcodec/dvbsubdec.c
+++ b/libavcodec/dvbsubdec.c
@@ -102,7 +102,7 @@ static void png_save2(const char *filename, uint32_t *bitmap, int w, int h)
char fname[40], fname2[40];
char command[1024];
- snprintf(fname, 40, "%s.ppm", filename);
+ snprintf(fname, sizeof(fname), "%s.ppm", filename);
f = fopen(fname, "w");
if (!f) {
@@ -124,7 +124,7 @@ static void png_save2(const char *filename, uint32_t *bitmap, int w, int h)
fclose(f);
- snprintf(fname2, 40, "%s-a.pgm", filename);
+ snprintf(fname2, sizeof(fname2), "%s-a.pgm", filename);
f = fopen(fname2, "w");
if (!f) {
@@ -143,10 +143,10 @@ static void png_save2(const char *filename, uint32_t *bitmap, int w, int h)
}
fclose(f);
- snprintf(command, 1024, "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
+ snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
system(command);
- snprintf(command, 1024, "rm %s %s", fname, fname2);
+ snprintf(command, sizeof(command), "rm %s %s", fname, fname2);
system(command);
}
#endif
@@ -1262,7 +1262,7 @@ static void save_display_set(DVBSubContext *ctx)
}
- snprintf(filename, 32, "dvbs.%d", fileno_index);
+ snprintf(filename, sizeof(filename), "dvbs.%d", fileno_index);
png_save2(filename, pbuf, width, height);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list