Merge pull request #331 from ledvinap/fix-rxmap
fix index overflow in channel mapping
This commit is contained in:
commit
33c6d571cc
|
@ -345,7 +345,7 @@ void parseRcChannels(const char *input, rxConfig_t *rxConfig)
|
|||
|
||||
for (c = input; *c; c++) {
|
||||
s = strchr(rcChannelLetters, *c);
|
||||
if (s)
|
||||
if (s && (s < rcChannelLetters + MAX_MAPPABLE_RX_INPUTS))
|
||||
rxConfig->rcmap[s - rcChannelLetters] = c - input;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue