Gentoo Archives: gentoo-commits

From: "Jurek Bartuszek (jurek)" <jurek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/mono/files: mono-biginteger_overflow.diff digest-mono-1.2.5.1-r1
Date: Sat, 03 Nov 2007 00:38:47
Message-Id: E1Io72A-0002ko-F3@stork.gentoo.org
1 jurek 07/11/03 00:38:42
2
3 Added: mono-biginteger_overflow.diff
4 digest-mono-1.2.5.1-r1
5 Log:
6 dev-lang/mono: Version bump (bug #197067)
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.1 dev-lang/mono/files/mono-biginteger_overflow.diff
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mono/files/mono-biginteger_overflow.diff?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mono/files/mono-biginteger_overflow.diff?rev=1.1&content-type=text/plain
14
15 Index: mono-biginteger_overflow.diff
16 ===================================================================
17 --- mcs/class/corlib/Mono.Math/BigInteger.cs 2007-09-19 19:06:06.000000000 +0200
18 +++ mcs/class/corlib/Mono.Math/BigInteger.cs 2007-10-25 23:46:55.000000000 +0200
19 @@ -1607,7 +1607,7 @@
20 uint j = 1;
21
22 // Multiply and add
23 - for (; j < m.length; j++) {
24 + for (; j < m.length && j < A.length; j++) {
25 c += (ulong)u_i * (ulong)*(mP++) + *(aSP++);
26 *(aDP++) = (uint)c;
27 c >>= 32;
28 --- mcs/class/Mono.Security/Mono.Math/BigInteger.cs 2007-07-24 23:48:50.000000000 +0200
29 +++ mcs/class/Mono.Security/Mono.Math/BigInteger.cs 2007-10-25 23:45:01.000000000 +0200
30 @@ -1601,7 +1601,7 @@
31 uint j = 1;
32
33 // Multiply and add
34 - for (; j < m.length; j++) {
35 + for (; j < m.length && j < A.length; j++) {
36 c += (ulong)u_i * (ulong)*(mP++) + *(aSP++);
37 *(aDP++) = (uint)c;
38 c >>= 32;
39
40
41
42 1.1 dev-lang/mono/files/digest-mono-1.2.5.1-r1
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mono/files/digest-mono-1.2.5.1-r1?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mono/files/digest-mono-1.2.5.1-r1?rev=1.1&content-type=text/plain
46
47 Index: digest-mono-1.2.5.1-r1
48 ===================================================================
49 MD5 dfede0c8c29384a8f8a6953a9bd06224 mono-1.2.5.1.tar.bz2 17492757
50 RMD160 8000374d9aaa3149599ba83079959303a6bae014 mono-1.2.5.1.tar.bz2 17492757
51 SHA256 434f91032e48c03e1202ba3cef1648e2708eeefcf51143d3547e34acc9c68a96 mono-1.2.5.1.tar.bz2 17492757
52
53
54
55 --
56 gentoo-commits@g.o mailing list