mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 12:25:20 +03:00
Merge pull request #331 from ledvinap/fix-rxmap
fix index overflow in channel mapping
This commit is contained in:
commit
33c6d571cc
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ void parseRcChannels(const char *input, rxConfig_t *rxConfig)
|
||||||
|
|
||||||
for (c = input; *c; c++) {
|
for (c = input; *c; c++) {
|
||||||
s = strchr(rcChannelLetters, *c);
|
s = strchr(rcChannelLetters, *c);
|
||||||
if (s)
|
if (s && (s < rcChannelLetters + MAX_MAPPABLE_RX_INPUTS))
|
||||||
rxConfig->rcmap[s - rcChannelLetters] = c - input;
|
rxConfig->rcmap[s - rcChannelLetters] = c - input;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue