From 813af36b51679703fc0528d1d162bf8e49f090a5 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Wed, 12 Jan 2005 01:02:13 +0000
Subject: [PATCH] sprintf->snprintf

Originally committed as revision 3824 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 vhook/fish.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vhook/fish.c b/vhook/fish.c
index 0a6418834c2..c710526b154 100644
--- a/vhook/fish.c
+++ b/vhook/fish.c
@@ -337,7 +337,7 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width,
                     FILE *f;
                     char fname[256];
 
-                    sprintf(fname, "%s/fishimg%ld_%lld.ppm", ci->dir, time(0), pts);
+                    snprintf(fname, sizeof(fname), "%s/fishimg%ld_%lld.ppm", ci->dir, time(0), pts);
                     f = fopen(fname, "w");
                     if (f) {
                         fprintf(f, "P6 %d %d 255\n", width, height);
-- 
GitLab