diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2010-02-23 11:01:32 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2010-02-23 11:01:32 +0000 |
commit | f68c9a14c9d4fc2b55d4d3b9128fe7731c6f0822 (patch) | |
tree | 003ecedad0d5a28b71429006a82bc2e4e0e32023 /x11-plugins/wmix/files | |
parent | Version bump to final 1.0, fixes bug #306253 (diff) | |
download | gentoo-2-f68c9a14c9d4fc2b55d4d3b9128fe7731c6f0822.tar.gz gentoo-2-f68c9a14c9d4fc2b55d4d3b9128fe7731c6f0822.tar.bz2 gentoo-2-f68c9a14c9d4fc2b55d4d3b9128fe7731c6f0822.zip |
Revision bump, with patch for bug #301800.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'x11-plugins/wmix/files')
-rw-r--r-- | x11-plugins/wmix/files/wmix-fix-free.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-plugins/wmix/files/wmix-fix-free.patch b/x11-plugins/wmix/files/wmix-fix-free.patch new file mode 100644 index 000000000000..340f91771fa7 --- /dev/null +++ b/x11-plugins/wmix/files/wmix-fix-free.patch @@ -0,0 +1,11 @@ +--- wmix.c.orig 2004-05-12 21:30:53.000000000 -0300 ++++ wmix.c 2009-07-08 00:20:28.000000000 -0300 +@@ -134,7 +134,7 @@ + } + + /* handle writing PID file, silently ignore if we can't do it */ +- pid = calloc(1, strlen(home) + 10); ++ pid = calloc(1, strlen(home) + 11); + sprintf(pid, "%s/.wmix.pid", home); + fp = fopen(pid, "w"); + if (fp) { |