Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-roguelike/hengband/files: hengband-1.6.2-ovflfix.patch
Date: Thu, 28 Oct 2010 11:12:49
Message-Id: 20101028111245.A654020051@flycatcher.gentoo.org
1 tupone 10/10/28 11:12:45
2
3 Added: hengband-1.6.2-ovflfix.patch
4 Log:
5 Fix overflow. Bug #340255
6
7 (Portage version: 2.1.9.22/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 games-roguelike/hengband/files/hengband-1.6.2-ovflfix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/hengband/files/hengband-1.6.2-ovflfix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/hengband/files/hengband-1.6.2-ovflfix.patch?rev=1.1&content-type=text/plain
14
15 Index: hengband-1.6.2-ovflfix.patch
16 ===================================================================
17 --- src/effects.c.old 2010-10-28 11:51:31.000000000 +0200
18 +++ src/effects.c 2010-10-28 11:51:59.000000000 +0200
19 @@ -5191,7 +5191,7 @@
20 }
21 else
22 {
23 - char buf[10];
24 + char buf[15];
25
26 if (p_ptr->inside_arena)
27 #ifdef JP