From: David Kalnischkies Date: Sat, 2 Apr 2011 15:42:01 +0000 (+0200) Subject: impossible to be too long but just to be sure use snprintf X-Git-Tag: 0.8.13.2~1^2~1 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/8ff84cf381c254565aa3e1837265f9991909e576 impossible to be too long but just to be sure use snprintf --- diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index 2e2bb5ebc..ace738d7a 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -699,7 +699,7 @@ string TimeRFC1123(time_t Date) const char *Month[] = {"Jan","Feb","Mar","Apr","May","Jun","Jul", "Aug","Sep","Oct","Nov","Dec"}; - sprintf(Buf,"%s, %02i %s %i %02i:%02i:%02i GMT",Day[Conv.tm_wday], + snprintf(Buf, sizeof(Buf), "%s, %02i %s %i %02i:%02i:%02i GMT",Day[Conv.tm_wday], Conv.tm_mday,Month[Conv.tm_mon],Conv.tm_year+1900,Conv.tm_hour, Conv.tm_min,Conv.tm_sec); return Buf;