From: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Date: Mon, 28 Sep 2009 14:58:32 +0000 (+0400)
Subject: wpan-phy: use snprintf to limit the amount of chars written
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=375bb0e04b618d0c425b0ea492d16cf71eb94905;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

wpan-phy: use snprintf to limit the amount of chars written

Use snprintf to limit the amount of chars put in the buffer for attr -> show.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
---

diff --git a/net/ieee802154/wpan-class.c b/net/ieee802154/wpan-class.c
index a10ae5be6adb..68ccde63155b 100644
--- a/net/ieee802154/wpan-class.c
+++ b/net/ieee802154/wpan-class.c
@@ -30,7 +30,7 @@ static ssize_t name ## _show(struct device *dev,			\
 	int ret;							\
 									\
 	mutex_lock(&phy->pib_lock);					\
-	ret = sprintf(buf, format_string "\n", args);			\
+	ret = snprintf(buf, PAGE_SIZE, format_string "\n", args);	\
 	mutex_unlock(&phy->pib_lock);					\
 	return ret;							\
 }