Date: Sun, 10 Apr 2016 01:21:51 +0000 (UTC) From: Jason Unovitch <junovitch@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412884 - in head/games/taipan: . files Message-ID: <201604100121.u3A1LpMF089476@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: junovitch Date: Sun Apr 10 01:21:51 2016 New Revision: 412884 URL: https://svnweb.freebsd.org/changeset/ports/412884 Log: games/taipan: fix out of bounds array subscript taipan.c:2709:7: warning: array index 4 is past the end of the array (which contains 4 elements) [-Warray-bounds] PR: 206771 Submitted by: Dave Walton <dw-fbsd@digger.net> Submitted by: c.brinkhaus@t-online.de Modified: head/games/taipan/Makefile head/games/taipan/files/patch-taipan.c Modified: head/games/taipan/Makefile ============================================================================== --- head/games/taipan/Makefile Sun Apr 10 01:20:35 2016 (r412883) +++ head/games/taipan/Makefile Sun Apr 10 01:21:51 2016 (r412884) @@ -3,7 +3,7 @@ PORTNAME= taipan PORTVERSION= 0.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SUNSITE/games/textrpg Modified: head/games/taipan/files/patch-taipan.c ============================================================================== --- head/games/taipan/files/patch-taipan.c Sun Apr 10 01:20:35 2016 (r412883) +++ head/games/taipan/files/patch-taipan.c Sun Apr 10 01:21:51 2016 (r412884) @@ -1,6 +1,6 @@ ---- taipan.c.orig Fri Mar 15 15:05:41 2002 -+++ taipan.c Fri Mar 15 15:08:30 2002 -@@ -2572,7 +2572,7 @@ +--- taipan.c.orig 2001-12-31 16:09:20 UTC ++++ taipan.c +@@ -2572,7 +2572,7 @@ void mchenry(void) amount = get_num(9); if (amount == -1) { @@ -9,3 +9,13 @@ } if (amount <= cash) { +@@ -2705,8 +2705,8 @@ void final_stats(void) + bank = 0; + hkw_[0] = 0; + hkw_[1] = 0; ++ hkw_[2] = 0; + hkw_[3] = 0; +- hkw_[4] = 0; + hold_[0] = 0; + hold_[1] = 0; + hold_[2] = 0;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604100121.u3A1LpMF089476>