Merge "Use snprintf(3) instead of sprintf(3)."

This commit is contained in:
Dan Albert 2014-10-09 00:32:10 +00:00 committed by Gerrit Code Review
commit 8a7f8387b3

View File

@ -103,7 +103,7 @@ asctime_r(register const struct tm *timeptr, char *buf)
/*
** We avoid using snprintf since it's not available on all systems.
*/
(void) sprintf(result,
(void) snprintf(result, sizeof(result), /* Android change: use snprintf. */
((strlen(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
wn, mn,
timeptr->tm_mday, timeptr->tm_hour,