Only bail out if the last character is *not* \0 --- phy.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/phy.c b/phy.c index 91042b4..d9090fd 100644 --- a/phy.c +++ b/phy.c @@ -293,7 +293,7 @@ static int handle_txpower(struct nl80211_state *state, } mbm = strtol(argv[1], &endptr, 10); - if (!*endptr) + if (*endptr) return 2; NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_TX_POWER_LEVEL, mbm); } else if (argc != 1) -- 1.7.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html