summaryrefslogtreecommitdiff
path: root/net/rtorrent/patches
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2005-09-26 07:49:06 +0000
committerjoerg <joerg@pkgsrc.org>2005-09-26 07:49:06 +0000
commit305d60696dbd312fdc6e667a618d930e483ff4dc (patch)
tree9ffd8abc0bc79a63716142e543597128a8e49226 /net/rtorrent/patches
parent6d63e57922c61decdbac037303937b97b04c3888 (diff)
downloadpkgsrc-305d60696dbd312fdc6e667a618d930e483ff4dc.tar.gz
Fix a bug in the tab-completion. When the prefix is not unique, rtorrent
would have hit an internal assertion later. The patch is a merge from the unstable tree as suggested by the author. Bump revision to 1.
Diffstat (limited to 'net/rtorrent/patches')
-rw-r--r--net/rtorrent/patches/patch-aa14
1 files changed, 14 insertions, 0 deletions
diff --git a/net/rtorrent/patches/patch-aa b/net/rtorrent/patches/patch-aa
new file mode 100644
index 00000000000..d48788bcf8e
--- /dev/null
+++ b/net/rtorrent/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1 2005/09/26 07:49:06 joerg Exp $
+
+--- src/ui/element_string_list.cc.orig 2005-09-25 19:07:46.000000000 +0200
++++ src/ui/element_string_list.cc
+@@ -43,7 +43,8 @@
+
+ namespace ui {
+
+-ElementStringList::ElementStringList() {
++ElementStringList::ElementStringList():
++ m_window(NULL) {
+ m_list.push_back("Test string 1");
+ m_list.push_back("Test string 2");
+ }