From owner-svn-ports-branches@freebsd.org Sat Oct 10 01:10:22 2015 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 627709D248C; Sat, 10 Oct 2015 01:10:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 142633D1; Sat, 10 Oct 2015 01:10:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A1AL9H078363; Sat, 10 Oct 2015 01:10:21 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A1ALLJ078361; Sat, 10 Oct 2015 01:10:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510100110.t9A1ALLJ078361@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 10 Oct 2015 01:10:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r398970 - branches/2015Q4/games/concentration/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Oct 2015 01:10:22 -0000 Author: amdmi3 Date: Sat Oct 10 01:10:20 2015 New Revision: 398970 URL: https://svnweb.freebsd.org/changeset/ports/398970 Log: MFH: r398969 - Fix crash due to unterminated string - Regenerate patches Approved by: ports-secteam blanket Added: branches/2015Q4/games/concentration/files/patch-src_ShiftyEngine.c - copied unchanged from r398969, head/games/concentration/files/patch-src_ShiftyEngine.c Modified: branches/2015Q4/games/concentration/files/patch-src-concentration.c Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/games/concentration/files/patch-src-concentration.c ============================================================================== --- branches/2015Q4/games/concentration/files/patch-src-concentration.c Sat Oct 10 01:09:08 2015 (r398969) +++ branches/2015Q4/games/concentration/files/patch-src-concentration.c Sat Oct 10 01:10:20 2015 (r398970) @@ -1,6 +1,6 @@ ---- src/concentration.c.orig 2005-11-09 19:05:02.000000000 +0300 -+++ src/concentration.c 2013-06-04 07:00:25.084319599 +0400 -@@ -202,7 +202,7 @@ +--- src/concentration.c.orig 2005-11-09 16:05:02 UTC ++++ src/concentration.c +@@ -202,7 +202,7 @@ char * helpText[] = { /***************************************************** ****************************************************/ Copied: branches/2015Q4/games/concentration/files/patch-src_ShiftyEngine.c (from r398969, head/games/concentration/files/patch-src_ShiftyEngine.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/games/concentration/files/patch-src_ShiftyEngine.c Sat Oct 10 01:10:20 2015 (r398970, copy of r398969, head/games/concentration/files/patch-src_ShiftyEngine.c) @@ -0,0 +1,11 @@ +--- src/ShiftyEngine.c.orig 2004-09-21 01:08:59 UTC ++++ src/ShiftyEngine.c +@@ -93,7 +93,7 @@ void SE_SetBackground(char * name) + exit(1); + } + +- strncpy(backgroundName, name, len); ++ strncpy(backgroundName, name, len + 1); + } + + /*****************************************************