summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch')
-rw-r--r--app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch b/app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch
deleted file mode 100644
index 1739a146c485..000000000000
--- a/app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-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);
-