commit | b22061718db0111f9e7474f9b60aef02456ac070 | [log] [tgz] |
---|---|---|
author | Ron Yorston <rmy@pobox.com> | Sun Apr 03 22:29:35 2016 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Sun Apr 03 22:29:35 2016 +0200 |
tree | 95d4fc9424e79c0557d3d695d7600dbab792f3c3 | |
parent | 6aab9928dec29855bcee21bce163e5fdf7144350 [diff] |
find_applet_by_name: loop index should be signed The loop for (j = ARRAY_SIZE(applet_nameofs)-1; j >= 0; j--) { was intended to terminate when j goes negative, so j needs to be signed. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>