diff options
author | 2010-02-23 11:01:32 +0000 | |
---|---|---|
committer | 2010-02-23 11:01:32 +0000 | |
commit | 1a6a3b09643ad26e7edc2c66740bd1aafcf6b956 (patch) | |
tree | 6af3567f44d647ed3e1f87565d71ae2823d3a6b5 /x11-plugins/wmix/files | |
parent | Version bump to final 1.0, fixes bug #306253 (diff) | |
download | historical-1a6a3b09643ad26e7edc2c66740bd1aafcf6b956.tar.gz historical-1a6a3b09643ad26e7edc2c66740bd1aafcf6b956.tar.bz2 historical-1a6a3b09643ad26e7edc2c66740bd1aafcf6b956.zip |
Revision bump, with patch for bug #301800.
Package-Manager: portage-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) { |