From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 15 02:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 61B82F73 for ; Mon, 15 Jul 2013 02:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 53BFDEF7 for ; Mon, 15 Jul 2013 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r6F2A18r063088 for ; Mon, 15 Jul 2013 02:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r6F2A1hJ063087; Mon, 15 Jul 2013 02:10:01 GMT (envelope-from gnats) Date: Mon, 15 Jul 2013 02:10:01 GMT Message-Id: <201307150210.r6F2A1hJ063087@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dt71@gmx.com Subject: Re: ports/180563: SeaMonkey compilation error with Clang (*pp = ' \0' ; ) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dt71@gmx.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jul 2013 02:10:01 -0000 The following reply was made to PR ports/180563; it has been noted by GNATS. From: dt71@gmx.com To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/180563: SeaMonkey compilation error with Clang (*pp = '\0';) Date: Mon, 15 Jul 2013 04:00:06 +0200 This is a multi-part message in MIME format. --------------060204090904010200010108 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit --------------060204090904010200010108 Content-Type: text/x-patch; name="seamonkey.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="seamonkey.patch" --- comm-release/mailnews/base/search/src/nsMsgSearchTerm.cpp +++ comm-release/mailnews/base/search/src/nsMsgSearchTerm.cpp @@ -197,7 +197,7 @@ } } if (!found) - *string = '\0'; // don't leave the string uninitialized + *string = 0; // don't leave the string uninitialized // we no longer return invalid attribute. If we cannot find the string in the table, // then it is an arbitrary header. Return success regardless if found or not --------------060204090904010200010108--