[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <512F1534.9020404@asianux.com>
Date: Thu, 28 Feb 2013 16:28:36 +0800
From: Chen Gang <gang.chen@...anux.com>
To: venkat.x.venkatsubra@...cle.com,
David Miller <davem@...emloft.net>, rds-devel@....oracle.com,
netdev <netdev@...r.kernel.org>
Subject: [PATCH] net/rds: using strlcpy instead of strncpy
when src strlen is sizeof(ctr.name) - 1, the dest str is not '\0' end.
better use strlcpy instead.
Signed-off-by: Chen Gang <gang.chen@...anux.com>
---
net/rds/stats.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/rds/stats.c b/net/rds/stats.c
index 7be790d..b9ac1df 100644
--- a/net/rds/stats.c
+++ b/net/rds/stats.c
@@ -86,7 +86,7 @@ void rds_stats_info_copy(struct rds_info_iterator *iter,
for (i = 0; i < nr; i++) {
BUG_ON(strlen(names[i]) >= sizeof(ctr.name));
- strncpy(ctr.name, names[i], sizeof(ctr.name) - 1);
+ strlcpy(ctr.name, names[i], sizeof(ctr.name));
ctr.value = values[i];
rds_info_copy(iter, &ctr, sizeof(ctr));
--
1.7.7.6
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists