The initialization of ngroups is occurring at the end of the
first iteration of the outer loop, which means that the
assignment  pins[ngroups++] = i is potentially indexing into
a region outside of array pins because ngroups is not initialized.
Instead, initialize ngroups in the inner loop before the first
inner loop iteration.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
        u16 pins[ARRAY_SIZE(lpc18xx_pins)];
        int func, ngroups, i;
 
-       for (func = 0; func < FUNC_MAX; ngroups = 0, func++) {
-
-               for (i = 0; i < ARRAY_SIZE(lpc18xx_pins); i++) {
+       for (func = 0; func < FUNC_MAX; func++) {
+               for (ngroups = 0, i = 0; i < ARRAY_SIZE(lpc18xx_pins); i++) {
                        if (lpc18xx_valid_pin_function(i, func))
                                pins[ngroups++] = i;
                }