svn commit: r412884 - in head/games/taipan: . files

Jason Unovitch junovitch at FreeBSD.org
Sun Apr 10 01:21:52 UTC 2016


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 at digger.net>
  Submitted by:	c.brinkhaus at 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;


More information about the svn-ports-all mailing list