From 55456eaf17d1767111cebccc37e94e20d8ec778f Mon Sep 17 00:00:00 2001 From: Arkshine Date: Sat, 3 May 2014 15:41:05 +0200 Subject: [PATCH] Fix format_time (returned length doesn't include null terminator, related to a86ca1491) --- amxmodx/amxmodx.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amxmodx/amxmodx.cpp b/amxmodx/amxmodx.cpp index 74d672d9..8d0c644d 100755 --- a/amxmodx/amxmodx.cpp +++ b/amxmodx/amxmodx.cpp @@ -2192,9 +2192,9 @@ static cell AMX_NATIVE_CALL format_time(AMX *amx, cell *params) /* 3 param */ } char szDate[512]; - ilen = strftime(szDate, 511, sptemp, lt); // Returns length, including null-character. + ilen = strftime(szDate, 511, sptemp, lt); - return set_amxstring_utf8(amx, params[1], szDate, ilen - 1, params[2] + 1); // + EOS + return set_amxstring_utf8(amx, params[1], szDate, ilen, params[2] + 1); // + EOS }