[package] rtorrent add missing patch after update
authorFlorian Fainelli <florian@openwrt.org>
Wed, 27 May 2009 12:26:24 +0000 (12:26 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Wed, 27 May 2009 12:26:24 +0000 (12:26 +0000)
SVN-Revision: 16106

net/rtorrent/patches/010-fix_exec_capture_leak.patch [new file with mode: 0644]

diff --git a/net/rtorrent/patches/010-fix_exec_capture_leak.patch b/net/rtorrent/patches/010-fix_exec_capture_leak.patch
new file mode 100644 (file)
index 0000000..042b73e
--- /dev/null
@@ -0,0 +1,14 @@
+# Fixes a file handle leak in the execute_capture functions.
+Index: rtorrent/src/rpc/exec_file.cc
+===================================================================
+--- rtorrent/src/rpc/exec_file.cc      (revision 1093)
++++ rtorrent/src/rpc/exec_file.cc      (working copy)
+@@ -123,6 +123,8 @@
+           m_capture += std::string(buffer, length);
+       } while (length > 0);
++      ::close(pipeFd[0]);
++
+       if (m_logFd != -1) {
+         write(m_logFd, "Captured output:\n", sizeof("Captured output:\n"));
+         write(m_logFd, m_capture.data(), m_capture.length());