Gentoo Archives: gentoo-commits

From: "Mark Loeser (halcy0n)" <halcy0n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/binutils/2.18: 98_all_binutils-cxxfilt-bug230593.patch README.history
Date: Sat, 05 Jul 2008 04:03:10
Message-Id: E1KEyzI-00068d-QU@stork.gentoo.org
1 halcy0n 08/07/05 04:03:04
2
3 Modified: README.history
4 Added: 98_all_binutils-cxxfilt-bug230593.patch
5 Log:
6 Add patch for bug #230593
7
8 Revision Changes Path
9 1.6 src/patchsets/binutils/2.18/README.history
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/binutils/2.18/README.history?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/binutils/2.18/README.history?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/binutils/2.18/README.history?r1=1.5&r2=1.6
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.18/README.history,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- README.history 23 Jun 2008 02:06:23 -0000 1.5
22 +++ README.history 5 Jul 2008 04:03:04 -0000 1.6
23 @@ -1,3 +1,6 @@
24 +1.7 04.07.2008
25 + + 98_all_binutils-cxxfilt-bug230593.patch
26 +
27 1.6 22.06.2008
28 - 13_all_mips-gnu-hash-support.patch
29 + 97_all_binutils-freebsd-sysv-pr4424.patch
30
31
32
33 1.1 src/patchsets/binutils/2.18/98_all_binutils-cxxfilt-bug230593.patch
34
35 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/binutils/2.18/98_all_binutils-cxxfilt-bug230593.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/binutils/2.18/98_all_binutils-cxxfilt-bug230593.patch?rev=1.1&content-type=text/plain
37
38 Index: 98_all_binutils-cxxfilt-bug230593.patch
39 ===================================================================
40 ===================================================================
41 RCS file: /cvs/src/src/binutils/cxxfilt.c,v
42 retrieving revision 1.14
43 retrieving revision 1.15
44 diff -u -r1.14 -r1.15
45 --- src/binutils/cxxfilt.c 2007/07/05 16:54:45 1.14
46 +++ src/binutils/cxxfilt.c 2007/11/26 01:53:59 1.15
47 @@ -63,12 +63,12 @@
48 result = cplus_demangle (mangled_name + skip_first, flags);
49
50 if (result == NULL)
51 - printf (mangled_name);
52 + printf ("%s", mangled_name);
53 else
54 {
55 if (mangled_name[0] == '.')
56 putchar ('.');
57 - printf (result);
58 + printf ("%s", result);
59 free (result);
60 }
61 }
62
63
64
65 --
66 gentoo-commits@l.g.o mailing list