From 90b75a04351242c5b242359008a51c2fb0dd1d41 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Tue, 6 Mar 2007 04:22:03 +0000 Subject: * Fix the double package name URL when using XferCommand * Fixed valgrind yelling about the sprintfs in md5/sha1 routines --- lib/libalpm/md5driver.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/libalpm/md5driver.c') diff --git a/lib/libalpm/md5driver.c b/lib/libalpm/md5driver.c index 60144fee..66071052 100644 --- a/lib/libalpm/md5driver.c +++ b/lib/libalpm/md5driver.c @@ -47,6 +47,7 @@ char* _alpm_MDFile(char *filename) FILE *file; MD_CTX context; int len; + char hex[3]; unsigned char buffer[1024], digest[16]; ALPM_LOG_FUNC; @@ -66,10 +67,11 @@ char* _alpm_MDFile(char *filename) ret = calloc(33, sizeof(char)); for(i = 0; i < 16; i++) { - sprintf(ret+(i*2), "%02x", digest[i]); + snprintf(hex, 3, "%02x", digest[i]); + strncat(ret, hex, 2); } - _alpm_log(PM_LOG_DEBUG, _("sha1(%s) = %s"), filename, ret); + _alpm_log(PM_LOG_DEBUG, _("md5(%s) = %s"), filename, ret); return(ret); } return(NULL); -- cgit v1.2.3-24-g4f1b