P2PS: Remove redundant check in for loop

Signed-off-by: Purushottam Kushwaha <p.kushwaha@samsung.com>
Signed-off-by: Mayank Haarit <mayank.h@samsung.com>
This commit is contained in:
Purushottam Kushwaha 2015-08-21 09:56:05 +00:00 committed by Jouni Malinen
parent 5a233fbdf0
commit 658665551c
1 changed files with 1 additions and 1 deletions

View File

@ -1132,7 +1132,7 @@ static int p2ps_gen_hash(struct p2p_data *p2p, const char *str, u8 *hash)
if (adv_len >= sizeof(str_buf))
return 0;
for (i = 0; str[i] && i < adv_len; i++) {
for (i = 0; i < adv_len; i++) {
if (str[i] >= 'A' && str[i] <= 'Z')
str_buf[i] = str[i] - 'A' + 'a';
else