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 ADC777A2E8 for ; Sat, 24 Dec 2016 10:18:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5F6B5856B7; Sat, 24 Dec 2016 10:18:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E4021856B0 for ; Sat, 24 Dec 2016 10:18:31 +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 6kxcwyXhnwef for ; Sat, 24 Dec 2016 10:18:31 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 73F5284CEE for ; Sat, 24 Dec 2016 10:18:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6DC33FBA6; Sat, 24 Dec 2016 10:18:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148257471163450" MIME-Version: 1.0 Date: Sat, 24 Dec 2016 10:18:31 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/net/DarwinStreamingServer To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20161224101831.6DC33FBA6@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. --_----------=_148257471163450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sat Dec 24 10:18:31 UTC 2016 Modified Files: pkgsrc/net/DarwinStreamingServer: distinfo Added Files: pkgsrc/net/DarwinStreamingServer/patches: patch-PrefsSourceLib_XMLParser.cpp Log Message: Pointers have no sign. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/DarwinStreamingServer/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148257471163450 Content-Disposition: inline Content-Length: 2084 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/DarwinStreamingServer/distinfo diff -u pkgsrc/net/DarwinStreamingServer/distinfo:1.5 pkgsrc/net/DarwinStreamingServer/distinfo:1.6 --- pkgsrc/net/DarwinStreamingServer/distinfo:1.5 Wed Nov 4 00:34:51 2015 +++ pkgsrc/net/DarwinStreamingServer/distinfo Sat Dec 24 10:18:31 2016 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2015/11/04 00:34:51 agc Exp $ +$NetBSD: distinfo,v 1.6 2016/12/24 10:18:31 joerg Exp $ SHA1 (DarwinStreamingSrvr5.5.5-Source.tar.gz) = ba8419be20e1911f7167dbd48722b2ba5e6f1fe1 RMD160 (DarwinStreamingSrvr5.5.5-Source.tar.gz) = 62996496da51971e384fc26dd336ef2785c2dca7 @@ -10,6 +10,7 @@ SHA1 (patch-APIModules_QTSSReflectorModu SHA1 (patch-CommonUtilitiesLib_EventContext.h) = e6d8f19e54670141e35a811df64366ad9983fbd7 SHA1 (patch-CommonUtilitiesLib_Task.cpp) = 5274c99a1f9239ef5a2096a48e3925a024868615 SHA1 (patch-CommonUtilitiesLib_Task.h) = 7b231d0f84548c7b11fd392ebad9b96b6764428b +SHA1 (patch-PrefsSourceLib_XMLParser.cpp) = 9e79da4809c3a046e2354ea7099a75f59803447d SHA1 (patch-QTFileTools_QTBroadcaster.tproj_QTBroadcaster.cpp) = 2c3efe74e286e3d2cb66448461f0b7b8d278705c SHA1 (patch-Server.tproj_main.cpp) = d50e581a54609dab6a8146a39faf036de9c39ebf SHA1 (patch-aa) = 2fc84964264f9b6529d031801b36bcca89f591a6 Added files: Index: pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp diff -u /dev/null pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp:1.1 --- /dev/null Sat Dec 24 10:18:31 2016 +++ pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp Sat Dec 24 10:18:31 2016 @@ -0,0 +1,15 @@ +$NetBSD: patch-PrefsSourceLib_XMLParser.cpp,v 1.1 2016/12/24 10:18:31 joerg Exp $ + +Pointers have no sign. + +--- PrefsSourceLib/XMLParser.cpp.orig 2016-12-24 09:26:37.933694610 +0000 ++++ PrefsSourceLib/XMLParser.cpp +@@ -656,7 +656,7 @@ void XMLTag::FormatData(ResizeableString + + if (fEmbeddedTags.GetLength() == 0) + { +- if (fValue > 0) ++ if (fValue != NULL) + formatter->Put(fValue); + } + else --_----------=_148257471163450--