Re: [PATCH] Replace vsprintf with vsnprintf in ext2fs/msg.c

2022-11-09 Thread Samuel Thibault
Applied, thanks! Flavio Cruz, le mer. 09 nov. 2022 00:49:04 -0500, a ecrit: > --- > > Hi > > On Sun, Nov 06, 2022 at 11:45:19AM +0100, Samuel Thibault wrote: > > Hello, > > > > Flavio Cruz, le dim. 06 nov. 2022 01:23:00 -0400, a ecrit: > > > --- > > > ext2fs/msg.c | 9 + > > > 1 file c

Re: [PATCH] Replace vsprintf with vsnprintf in ext2fs/msg.c

2022-11-08 Thread Flavio Cruz
--- Hi On Sun, Nov 06, 2022 at 11:45:19AM +0100, Samuel Thibault wrote: > Hello, > > Flavio Cruz, le dim. 06 nov. 2022 01:23:00 -0400, a ecrit: > > --- > > ext2fs/msg.c | 9 + > > 1 file changed, 5 insertions(+), 4 deletions(-) > > > > diff --git a/ext2fs/msg.c b/ext2fs/msg.c > > index

Re: [PATCH] Replace vsprintf with vsnprintf in ext2fs/msg.c

2022-11-06 Thread Samuel Thibault
Hello, Flavio Cruz, le dim. 06 nov. 2022 01:23:00 -0400, a ecrit: > --- > ext2fs/msg.c | 9 + > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/ext2fs/msg.c b/ext2fs/msg.c > index 83939b06..af636b7c 100644 > --- a/ext2fs/msg.c > +++ b/ext2fs/msg.c > @@ -38,7 +38,8 @@ int

[PATCH] Replace vsprintf with vsnprintf in ext2fs/msg.c

2022-11-05 Thread Flavio Cruz
--- ext2fs/msg.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ext2fs/msg.c b/ext2fs/msg.c index 83939b06..af636b7c 100644 --- a/ext2fs/msg.c +++ b/ext2fs/msg.c @@ -38,7 +38,8 @@ int printf (const char *fmt, ...) return done; } -static char error_buf[1024]; +#