Gentoo Archives: gentoo-commits

From: "Michele Noberasco (s4t4n)" <s4t4n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmix/files: wmix-fix-free.patch
Date: Tue, 23 Feb 2010 11:01:37
Message-Id: E1NjsWC-00048m-Ta@stork.gentoo.org
1 s4t4n 10/02/23 11:01:32
2
3 Added: wmix-fix-free.patch
4 Log:
5 Revision bump, with patch for bug #301800.
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 x11-plugins/wmix/files/wmix-fix-free.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmix/files/wmix-fix-free.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmix/files/wmix-fix-free.patch?rev=1.1&content-type=text/plain
13
14 Index: wmix-fix-free.patch
15 ===================================================================
16 --- wmix.c.orig 2004-05-12 21:30:53.000000000 -0300
17 +++ wmix.c 2009-07-08 00:20:28.000000000 -0300
18 @@ -134,7 +134,7 @@
19 }
20
21 /* handle writing PID file, silently ignore if we can't do it */
22 - pid = calloc(1, strlen(home) + 10);
23 + pid = calloc(1, strlen(home) + 11);
24 sprintf(pid, "%s/.wmix.pid", home);
25 fp = fopen(pid, "w");
26 if (fp) {