summaryrefslogtreecommitdiff
path: root/debian/patches/101_fix_buf_overflow.patch
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2016-02-20 02:38:51 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2016-02-20 02:38:51 +0100
commit667485b71df528e0d67e8d4f6e18ab972d8bf7ae (patch)
treeba9d5481fe9780ea16c6ef6fc6de725afdbab696 /debian/patches/101_fix_buf_overflow.patch
parenta61a5992cefc2204a99f25b2395b108092098e2c (diff)
Refresh patches
Diffstat (limited to 'debian/patches/101_fix_buf_overflow.patch')
-rw-r--r--debian/patches/101_fix_buf_overflow.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/debian/patches/101_fix_buf_overflow.patch b/debian/patches/101_fix_buf_overflow.patch
deleted file mode 100644
index f479558..0000000
--- a/debian/patches/101_fix_buf_overflow.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Description: fix buffer overflow
- based on 101_fix_buf_overflow from Leo Iannacone <l3on@ubuntu.com>
-Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
-Bug: TSOL buffer overflow
-Bug-ubuntu: https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/633054
-Forwarded: https://sourceforge.net/p/ipmitool/patches/100/
-Last-Update: 2014-12-01
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: trunk/lib/ipmi_tsol.c
-===================================================================
---- trunk.orig/lib/ipmi_tsol.c
-+++ trunk/lib/ipmi_tsol.c
-@@ -374,7 +374,7 @@ ipmi_tsol_main(struct ipmi_intf *intf, i
- char *recvip = NULL;
- char in_buff[IPMI_BUF_SIZE];
- char out_buff[IPMI_BUF_SIZE * 8];
-- char buff[IPMI_BUF_SIZE + 4];
-+ char buff[IPMI_BUF_SIZE * 8 + 4];
- int fd_socket, result, i;
- int out_buff_fill, in_buff_fill;
- int ip1, ip2, ip3, ip4;