forked from mirrors/qmk_firmware
Merge pull request #1225 from fredizzimo/fix_lcd_led_status_buffer_overrun
Fix buffer overrun in lcd_keyframes
This commit is contained in:
commit
0b31a63dd4
1 changed files with 2 additions and 2 deletions
|
@ -125,8 +125,8 @@ static void get_led_state_string(char* output, visualizer_state_t* state) {
|
||||||
pos += 5;
|
pos += 5;
|
||||||
}
|
}
|
||||||
if (state->status.leds & (1u << USB_LED_KANA)) {
|
if (state->status.leds & (1u << USB_LED_KANA)) {
|
||||||
memcpy(output + pos, "KANA ", 5);
|
memcpy(output + pos, "KANA", 4);
|
||||||
pos += 5;
|
pos += 4;
|
||||||
}
|
}
|
||||||
output[pos] = 0;
|
output[pos] = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue