Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/distcc/files: distcc-3.0-uninitialized.patch
Date: Wed, 05 Nov 2008 22:52:15
Message-Id: E1KxrES-0007UT-5y@stork.gentoo.org
1 matsuu 08/11/05 22:52:12
2
3 Added: distcc-3.0-uninitialized.patch
4 Log:
5 Added GCC_SPECS to init.d, bug #164818. Fixed uninitialized issue, bug #244847. Removed DISTCC_POTENTIAL_HOSTS variable. Added IPv6 elog.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
7
8 Revision Changes Path
9 1.1 sys-devel/distcc/files/distcc-3.0-uninitialized.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/distcc/files/distcc-3.0-uninitialized.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/distcc/files/distcc-3.0-uninitialized.patch?rev=1.1&content-type=text/plain
13
14 Index: distcc-3.0-uninitialized.patch
15 ===================================================================
16 Index: src/where.c
17 ===================================================================
18 --- src/where.c (revision 622)
19 +++ src/where.c (working copy)
20 @@ -190,7 +190,7 @@
21 int dcc_lock_local_cpp(int *cpu_lock_fd)
22 {
23 int ret;
24 - struct dcc_hostdef *chosen;
25 + struct dcc_hostdef *chosen = NULL;
26 ret = dcc_lock_one(dcc_hostdef_local_cpp, &chosen, cpu_lock_fd);
27 dcc_note_state(DCC_PHASE_CPP, NULL, chosen->hostname);
28 return ret;