Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libcdio/files: libcdio-0.78.2-bug203777.patch digest-libcdio-0.78.2-r3 digest-libcdio-0.78.2-r2
Date: Fri, 04 Jan 2008 23:16:54
Message-Id: E1JAvmQ-0002qr-GS@stork.gentoo.org
1 flameeyes 08/01/04 23:16:46
2
3 Modified: libcdio-0.78.2-bug203777.patch
4 Added: digest-libcdio-0.78.2-r3
5 Removed: digest-libcdio-0.78.2-r2
6 Log:
7 Fix patch for bug #203777 for an off by one. Straight-to-stable commit.
8 (Portage version: 2.1.4_rc14, RepoMan options: --force)
9
10 Revision Changes Path
11 1.2 dev-libs/libcdio/files/libcdio-0.78.2-bug203777.patch
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/libcdio-0.78.2-bug203777.patch?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/libcdio-0.78.2-bug203777.patch?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/libcdio-0.78.2-bug203777.patch?r1=1.1&r2=1.2
16
17 Index: libcdio-0.78.2-bug203777.patch
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcdio/files/libcdio-0.78.2-bug203777.patch,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- libcdio-0.78.2-bug203777.patch 30 Dec 2007 19:20:13 -0000 1.1
24 +++ libcdio-0.78.2-bug203777.patch 4 Jan 2008 23:16:45 -0000 1.2
25 @@ -6,7 +6,7 @@
26 char *psz_iso_name = p_statbuf->filename;
27 char _fullname[4096] = { 0, };
28 - char translated_name[MAX_ISONAME+1];
29 -+ char *translated_name = (char *) alloca(strlen(psz_iso_name+1));
30 ++ char *translated_name = (char *) alloca(strlen(psz_iso_name)+1);
31
32 if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
33 iso9660_name_translate_ext(psz_iso_name, translated_name,
34 @@ -18,7 +18,7 @@
35 char *psz_iso_name = p_statbuf->filename;
36 char _fullname[4096] = { 0, };
37 - char translated_name[MAX_ISONAME+1];
38 -+ char *translated_name = (char *) alloca(strlen(psz_iso_name+1));
39 ++ char *translated_name = (char *) alloca(strlen(psz_iso_name)+1);
40 +
41
42 if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
43
44
45
46 1.1 dev-libs/libcdio/files/digest-libcdio-0.78.2-r3
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/digest-libcdio-0.78.2-r3?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/digest-libcdio-0.78.2-r3?rev=1.1&content-type=text/plain
50
51 Index: digest-libcdio-0.78.2-r3
52 ===================================================================
53 MD5 a6b73300d1247012a1b1246d935ac0d3 libcdio-0.78.2.tar.gz 2024218
54 RMD160 4e32dd9bb4bd19b6604ce3d3c4716b6481b6956a libcdio-0.78.2.tar.gz 2024218
55 SHA256 2792e4133a89b254644ffe526c8eab785e1de3078d3a9c1ec03653247700ebde libcdio-0.78.2.tar.gz 2024218
56
57
58
59 --
60 gentoo-commits@g.o mailing list