summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-cdr/xdvdfs-tools/files/xdvdfs-tools-2.1-fnamefix.patch')
-rw-r--r--app-cdr/xdvdfs-tools/files/xdvdfs-tools-2.1-fnamefix.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/app-cdr/xdvdfs-tools/files/xdvdfs-tools-2.1-fnamefix.patch b/app-cdr/xdvdfs-tools/files/xdvdfs-tools-2.1-fnamefix.patch
deleted file mode 100644
index 4d06822eb06c..000000000000
--- a/app-cdr/xdvdfs-tools/files/xdvdfs-tools-2.1-fnamefix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- XDVDFS_Tools.orig/src/xdvdfs/xdvdfs.c 2003-08-15 23:26:58.000000000 +0000
-+++ XDVDFS_Tools/src/xdvdfs/xdvdfs.c 2005-05-21 12:13:55.655839216 +0000
-@@ -157,6 +157,14 @@
- memcpy(SearchRecord->Filename, Entry->Filename, Entry->FilenameLength);
- SearchRecord->Filename[Entry->FilenameLength] = 0;
-
-+ if (strstr(SearchRecord->Filename,"..") ||
-+ strchr(SearchRecord->Filename, '/') ||
-+ strchr(SearchRecord->Filename, '\\'))
-+ {
-+ printf("Filename contains invalid characters\n");
-+ exit(1);
-+ }
-+
- // Copy file parameters in the search_rec
- SearchRecord->Attributes = Entry->FileAttributes;
- SearchRecord->FileSize = ENDIAN_SAFE32(Entry->FileSize);