libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit db776f3b28adbf2345f97e27101f3eb3c4ee8227
parent 048a0fd60a0a62d94afa0b4fa6c32668f2095ff5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  3 Nov 2008 03:05:08 +0000

fixing overflows

Diffstat:
Msrc/plugins/s3mextractor.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/s3mextractor.c b/src/plugins/s3mextractor.c @@ -84,7 +84,7 @@ struct EXTRACTOR_Keywords *libextractor_s3m_extract /* Song title */ memcpy (&title, head->title, 28); - title[29] = '\0'; + title[28] = '\0'; prev = addkword (prev, title, EXTRACTOR_TITLE); return (prev);