diff options
Diffstat (limited to 'net-p2p/rtorrent/files/rtorrent-0.8.6-ncurses.patch')
-rw-r--r-- | net-p2p/rtorrent/files/rtorrent-0.8.6-ncurses.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/net-p2p/rtorrent/files/rtorrent-0.8.6-ncurses.patch b/net-p2p/rtorrent/files/rtorrent-0.8.6-ncurses.patch deleted file mode 100644 index 0dabca3c88b8..000000000000 --- a/net-p2p/rtorrent/files/rtorrent-0.8.6-ncurses.patch +++ /dev/null @@ -1,16 +0,0 @@ -rtorrent segfaults with latest ncurses (5.8). -this patch fixes the issue. - -https://bugs.gentoo.org/show_bug.cgi?id=358271 -https://bugzilla.redhat.com/show_bug.cgi?id=682454 -http://libtorrent.rakshasa.no/ticket/2518 ---- src/display/canvas.h -+++ src/display/canvas.h -@@ -48,7 +48,7 @@ class Canvas { - public: - typedef std::vector<Attributes> attributes_list; - -- Canvas(int x = 0, int y = 0, int width = 0, int height = 0) : -+ Canvas(int x = 0, int y = 0, int width = 1, int height = 1) : - m_window(newwin(height, width, y, x)) {} - ~Canvas() { delwin(m_window); } |