diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c index 575b887c2f..a0e6c81e3a 100644 --- a/apps/recorder/radio.c +++ b/apps/recorder/radio.c @@ -1098,7 +1098,7 @@ static int radio_add_preset(void) static int selected_preset = -1; static int radio_edit_preset(void) { - char buf[MAX_FMPRESET_LEN]; + char buf[MAX_FMPRESET_LEN + 1]; if (num_presets > 0) { @@ -1357,7 +1357,7 @@ static int scan_presets(void) { const struct fm_region_setting * const fmr = &fm_region[global_settings.fm_region]; - char buf[MAX_FMPRESET_LEN]; + char buf[MAX_FMPRESET_LEN + 1]; int i; curr_freq = fmr->freq_min; diff --git a/docs/CREDITS b/docs/CREDITS index fc4dbe043c..d5ad63b3ef 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -296,6 +296,7 @@ Nathan Hepting Akio Idehara Dagni McPhee Alex Gerchanovsky +Gerhard Dirschl The libmad team The wavpack team The ffmpeg team