svn commit: r412885 - in branches/2016Q2/games/taipan: . files

Jason Unovitch junovitch at FreeBSD.org
Sun Apr 10 01:22:25 UTC 2016


Author: junovitch
Date: Sun Apr 10 01:22:23 2016
New Revision: 412885
URL: https://svnweb.freebsd.org/changeset/ports/412885

Log:
  MFH: r412884
  
  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 at digger.net>
  Submitted by:	c.brinkhaus at t-online.de
  Approved by:	ports-secteam (with hat)

Modified:
  branches/2016Q2/games/taipan/Makefile
  branches/2016Q2/games/taipan/files/patch-taipan.c
Directory Properties:
  branches/2016Q2/   (props changed)

Modified: branches/2016Q2/games/taipan/Makefile
==============================================================================
--- branches/2016Q2/games/taipan/Makefile	Sun Apr 10 01:21:51 2016	(r412884)
+++ branches/2016Q2/games/taipan/Makefile	Sun Apr 10 01:22:23 2016	(r412885)
@@ -3,7 +3,7 @@
 
 PORTNAME=	taipan
 PORTVERSION=	0.9
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games
 MASTER_SITES=	SUNSITE/games/textrpg
 

Modified: branches/2016Q2/games/taipan/files/patch-taipan.c
==============================================================================
--- branches/2016Q2/games/taipan/files/patch-taipan.c	Sun Apr 10 01:21:51 2016	(r412884)
+++ branches/2016Q2/games/taipan/files/patch-taipan.c	Sun Apr 10 01:22:23 2016	(r412885)
@@ -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;


More information about the svn-ports-all mailing list