Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id F2E527A2FD for ; Thu, 22 Dec 2016 21:05:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A1EA78563F; Thu, 22 Dec 2016 21:05:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0E1D48563B for ; Thu, 22 Dec 2016 21:05:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id kViiMLl063Da for ; Thu, 22 Dec 2016 21:05:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8DED18556D for ; Thu, 22 Dec 2016 21:05:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8B47AFBA6; Thu, 22 Dec 2016 21:05:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1482440701166540" MIME-Version: 1.0 Date: Thu, 22 Dec 2016 21:05:01 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/graphics/f4l To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20161222210501.8B47AFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1482440701166540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu Dec 22 21:05:01 UTC 2016 Modified Files: pkgsrc/graphics/f4l: distinfo Added Files: pkgsrc/graphics/f4l/patches: patch-src_f4lm.cpp Log Message: Pointers can't be ordered relative to 0. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/graphics/f4l/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1482440701166540 Content-Disposition: inline Content-Length: 1803 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/f4l/distinfo diff -u pkgsrc/graphics/f4l/distinfo:1.6 pkgsrc/graphics/f4l/distinfo:1.7 --- pkgsrc/graphics/f4l/distinfo:1.6 Tue Nov 3 21:33:57 2015 +++ pkgsrc/graphics/f4l/distinfo Thu Dec 22 21:05:01 2016 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2015/11/03 21:33:57 agc Exp $ +$NetBSD: distinfo,v 1.7 2016/12/22 21:05:01 joerg Exp $ SHA1 (f4l-0.2.1.tar.bz2) = cae8077e5c6a87a406c78b615fdb69e78a30d330 RMD160 (f4l-0.2.1.tar.bz2) = 318a6c222466637b6f8d7fe955caacb0d1ee35f5 @@ -7,5 +7,6 @@ Size (f4l-0.2.1.tar.bz2) = 1502767 bytes SHA1 (patch-aa) = da7d819893dbbb48ffdb45f14fc72573a59c99bb SHA1 (patch-ab) = 443ac912b4563cd36d30542d502f4c4a63e68c40 SHA1 (patch-src_ccanvastext.cpp) = b0f92602d192356b2f7886f613c1ac6c5ae7ea3a +SHA1 (patch-src_f4lm.cpp) = 3ef3a5ff3dbb5ebe77011a12a9c3ba6498384e7e SHA1 (patch-src_f4lmdoc.cpp) = abcd735a46aad8e947bba08c525eb065efef1007 SHA1 (patch-src_flagStonePort_transform-cxx-bsd_transform_FSVector.h) = 3d1973ec3e709cc92eaf325946368bdd92c51a06 Added files: Index: pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp diff -u /dev/null pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp:1.1 --- /dev/null Thu Dec 22 21:05:01 2016 +++ pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp Thu Dec 22 21:05:01 2016 @@ -0,0 +1,13 @@ +$NetBSD: patch-src_f4lm.cpp,v 1.1 2016/12/22 21:05:01 joerg Exp $ + +--- src/f4lm.cpp.orig 2016-12-22 14:21:37.623447732 +0000 ++++ src/f4lm.cpp +@@ -1617,7 +1617,7 @@ void F4lmApp::openDocumentFile (const ch + + F4lmDoc * doc; + // check, if document already open. If yes, set the focus to the first view +- for (doc = pDocList->first (); doc > 0; doc = pDocList->next ()) ++ for (doc = pDocList->first (); doc; doc = pDocList->next ()) + { + if (doc->pathName () == file) + { --_----------=_1482440701166540--