summaryrefslogtreecommitdiffstats
path: root/app-arch/unrar/files/ftello_unrar_fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-arch/unrar/files/ftello_unrar_fix.patch')
-rw-r--r--app-arch/unrar/files/ftello_unrar_fix.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/app-arch/unrar/files/ftello_unrar_fix.patch b/app-arch/unrar/files/ftello_unrar_fix.patch
deleted file mode 100644
index a5f0d62..0000000
--- a/app-arch/unrar/files/ftello_unrar_fix.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -ruN unrar.orig/dll.cpp unrar/dll.cpp
---- unrar.orig/dll.cpp 2005-08-03 20:34:30.000000000 +0400
-+++ unrar/dll.cpp 2006-01-11 12:13:33.000000000 +0300
-@@ -271,8 +271,10 @@
- strcpy(Data->Cmd.Command,Operation==RAR_EXTRACT ? "X":"T");
- Data->Cmd.Test=Operation!=RAR_EXTRACT;
- bool Repeat=false;
-- Data->Extract.ExtractCurrentFile(&Data->Cmd,Data->Arc,Data->HeaderSize,Repeat);
--
-+
-+ if(Data->Extract.ExtractCurrentFile(&Data->Cmd,Data->Arc,Data->HeaderSize,Repeat) == false)
-+ return (ERAR_UNKNOWN);
-+
- while (Data->Arc.ReadHeader()!=0 && Data->Arc.GetHeaderType()==NEWSUB_HEAD)
- {
- Data->Extract.ExtractCurrentFile(&Data->Cmd,Data->Arc,Data->HeaderSize,Repeat);