Index: firmware/drivers/tuner/ipod_remote_tuner.c =================================================================== --- firmware/drivers/tuner/ipod_remote_tuner.c (revision 28558) +++ firmware/drivers/tuner/ipod_remote_tuner.c (working copy) @@ -274,11 +274,11 @@ { if (serbuf[3] == 0x1E) { - strlcpy(rds_radioname,serbuf+5,8); + strlcpy(rds_radioname,serbuf+5,sizeof(rds_radioname)); } else if(serbuf[3] == 0x04) { - strlcpy(rds_radioinfo,serbuf+5,(serbuf[0]-4)); + strlcpy(rds_radioinfo,serbuf+5,sizeof(rds_radioinfo)); } rds_event = true; }