summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-ftp/lftp/files/3.6.1-segfault.patch')
-rw-r--r--net-ftp/lftp/files/3.6.1-segfault.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/net-ftp/lftp/files/3.6.1-segfault.patch b/net-ftp/lftp/files/3.6.1-segfault.patch
deleted file mode 100644
index 52755e351ba0..000000000000
--- a/net-ftp/lftp/files/3.6.1-segfault.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/buffer.cc 10 Sep 2007 11:45:27 -0000 1.66
-+++ src/buffer.cc 3 Jan 2008 09:07:43 -0000
-@@ -155,7 +155,7 @@ void Buffer::vFormat(const char *f, va_l
- {
- va_list tmp;
- VA_COPY(tmp,v);
-- int res=vsnprintf(GetSpace(size), size, f, v);
-+ int res=vsnprintf(GetSpace(size), size, f, tmp);
- va_end(tmp);
- if(res>=0 && res<size)
- {