You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/rioutil/files/rioutil-1.5.0-buffer-overfl...

16 lines
515 B

flist->genre is defined as 'char genre[17]' so don't copy 22 into it
Patch by Kevin McCarthy <signals42@gmail.com>
--- librioutil/file_list.c
+++ librioutil/file_list.c
@@ -241,7 +241,7 @@
strncpy(flist->title, info.data->title, 64);
strncpy(flist->album, info.data->album, 64);
strncpy(flist->name, info.data->name, 64);
- strncpy(flist->genre, (char *)info.data->genre2, 22);
+ strncpy(flist->genre, (char *)info.data->genre2, 17);
strncpy(flist->year, (char *)info.data->year2, 4);