From defd249d3d54f6e86919ace8ea44934138aa1fb8 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 29 Apr 2016 22:10:40 -0700 Subject: [PATCH] toolbox ps: replace strcpy with snprintf. Change-Id: I0fdf9a8d5ab15bcff06cca3f3e7024ab76b219d9 --- toolbox/ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolbox/ps.c b/toolbox/ps.c index 3b3c8a1ae..c1291101c 100644 --- a/toolbox/ps.c +++ b/toolbox/ps.c @@ -151,7 +151,7 @@ static int ps_line(int pid, int tid) if (pw == 0 || (display_flags & SHOW_NUMERIC_UID)) { snprintf(user, sizeof(user), "%d", (int)stats.st_uid); } else { - strcpy(user, pw->pw_name); + snprintf(user, sizeof(user), "%s", pw->pw_name); } if (ppid_filter != 0 && ppid != ppid_filter) {