commit | 0f293b96dc6effa127ec63e11dd16221f1329126 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Tue Jul 22 20:16:55 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Tue Jul 22 20:16:55 2008 +0000 |
tree | a5b7873a5ece9bef8355da8d437cf53f952c66ca | |
parent | 68a192c00799fd2097bab1aec594cd27203b1ec6 [diff] [blame] |
fix all cases of strcpy on overlapping strings.
diff --git a/procps/nmeter.c b/procps/nmeter.c index 8cff0b9..be03932 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c
@@ -800,7 +800,7 @@ if (!cur) break; if (cur[1] == '%') { // %% - strcpy(cur, cur+1); + overlapping_strcpy(cur, cur + 1); cur++; goto again; }