From ec300ad9a870240b1196ce97db607ff23deede43 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 19 Jun 2008 20:21:44 +0300 Subject: [PATCH] fix variable name - closes #1629 --- modules/control/http/mvar.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/control/http/mvar.c b/modules/control/http/mvar.c index 58fa531bc6..c6439bd2cc 100644 --- a/modules/control/http/mvar.c +++ b/modules/control/http/mvar.c @@ -579,7 +579,7 @@ mvar_t *mvar_FileSetNew( intf_thread_t *p_intf, char *name, else #endif { - char psz_ctime[26]; + char psz_buf[26]; char psz_tmp[strlen( psz_dir ) + 1 + strlen( psz_name ) + 1]; sprintf( psz_tmp, "%s"DIR_SEP"%s", psz_dir, psz_name ); @@ -600,13 +600,14 @@ mvar_t *mvar_FileSetNew( intf_thread_t *p_intf, char *name, mvar_AppendNewVar( f, "type", "unknown" ); } - sprintf( psz_ctime, "%"PRId64, (int64_t)stat_info.st_size ); - mvar_AppendNewVar( f, "size", psz_ctime ); + snprintf( psz_buf, sizeof( psz_buf ), "%"PRId64, + (int64_t)stat_info.st_size ); + mvar_AppendNewVar( f, "size", psz_buf ); /* FIXME memory leak FIXME */ # ifdef HAVE_CTIME_R - ctime_r( &stat_info.st_mtime, psz_ctime ); - mvar_AppendNewVar( f, "date", psz_ctime ); + ctime_r( &stat_info.st_mtime, psz_buf ); + mvar_AppendNewVar( f, "date", psz_buf ); # else mvar_AppendNewVar( f, "date", ctime( &stat_info.st_mtime ) ); # endif -- 2.39.2