summarylogtreecommitdiffstats
path: root/fix_memory_allocation_bug.diff
diff options
context:
space:
mode:
authorBjoern Franke2023-05-12 10:53:40 +0200
committerBjoern Franke2023-05-12 10:53:40 +0200
commitac3ce7e38a07aba1bb02637332b0268c00765a99 (patch)
tree278fe091f9b4d7054ef259b1f5826f255019aad2 /fix_memory_allocation_bug.diff
parent83806909a3c7af0d418093add62b7b7feeff5cb9 (diff)
downloadaur-procmail.tar.gz
remove old patches
Diffstat (limited to 'fix_memory_allocation_bug.diff')
-rw-r--r--fix_memory_allocation_bug.diff11
1 files changed, 0 insertions, 11 deletions
diff --git a/fix_memory_allocation_bug.diff b/fix_memory_allocation_bug.diff
deleted file mode 100644
index ba95429226a7..000000000000
--- a/fix_memory_allocation_bug.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/pipes.c.old 2002-12-02 23:45:15.000000000 +0100
-+++ b/src/pipes.c 2002-12-02 23:45:24.000000000 +0100
-@@ -194,7 +194,7 @@
- makeblock(&temp,Stdfilled);
- tmemmove(temp.p,Stdout,Stdfilled);
- readdyn(&temp,&Stdfilled,Stdfilled+backlen+1);
-- Stdout=realloc(Stdout,&Stdfilled+1);
-+ Stdout=realloc(Stdout,Stdfilled+1);
- tmemmove(Stdout,temp.p,Stdfilled+1);
- freeblock(&temp);
- retStdout(Stdout,pwait&&pipw,!backblock);