diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-09-28 10:58:32 -0400 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-06 06:13:45 -0500 |
commit | 375bb0e04b618d0c425b0ea492d16cf71eb94905 (patch) | |
tree | 88d966bbae654ac0d5e90206a47cd6b36142201f /net/ieee802154 | |
parent | 37eb0edc8488fccbf601ab3e7e582373ed2a631e (diff) |
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>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/wpan-class.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, \ | |||
30 | int ret; \ | 30 | int ret; \ |
31 | \ | 31 | \ |
32 | mutex_lock(&phy->pib_lock); \ | 32 | mutex_lock(&phy->pib_lock); \ |
33 | ret = sprintf(buf, format_string "\n", args); \ | 33 | ret = snprintf(buf, PAGE_SIZE, format_string "\n", args); \ |
34 | mutex_unlock(&phy->pib_lock); \ | 34 | mutex_unlock(&phy->pib_lock); \ |
35 | return ret; \ | 35 | return ret; \ |
36 | } | 36 | } |