head 1.2; access; symbols pkgsrc-2026Q2:1.1.0.2 pkgsrc-2026Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2026.07.19.10.19.06; author wiz; state dead; branches; next 1.1; commitid sQxdR2TT7QcZyfOG; 1.1 date 2026.04.11.10.49.14; author wiz; state Exp; branches; next ; commitid ecW8chFiNo5CUwBG; desc @@ 1.2 log @kdiff3: update to 1.12.5. Version 1.12.5 - 2026 ========================= - 77444e89 Michael Reeves reeves.87@@gmail.com FIx crash when dealing with encoder errors. - 7a2bb375 Ari Zulan git@@zulan.net Fix paste crash while diff data is reinitialized - 391cb01b Michael Reeves reeves.87@@gmail.com Remove unneeded '(' nd ')' - 72523562 Michael Reeves reeves.87@@gmail.com Fix minor standard conformance issue. - 28603631 Michael Reeves reeves.87@@gmail.com Update inline linting suppression - 815b5c7c Michael Reeves reeves.87@@gmail.com Fix incorrect copy size in - DefaultFileAccessJobHandler::slotGetData - 9c2f7ca7 Michael Reeves reeves.87@@gmail.com restore clang-analyzer-cplusplus.NewDeleteLeaks no longer trigering in Qt headers as of Qt6 - a6d86377 Michael Reeves reeves.87@@gmail.com Fix unintended narrowing cast - 9aa5cc21 Igor Mironchik igor.mironchik@@gmail.com Hide progress dialog during folders comparing before status message is shown. - d708a466 Thomas Klausner wiz@@gatalith.at Fix ctype(3) abuse. Avoids crashes on certain systems @ text @$NetBSD: patch-src_diff.cpp,v 1.1 2026/04/11 10:49:14 wiz Exp $ Fix ctype(3) usage. https://invent.kde.org/sdk/kdiff3/-/merge_requests/74 --- src/diff.cpp.orig 2026-04-11 10:33:22.920577327 +0000 +++ src/diff.cpp @@@@ -107,10 +107,10 @@@@ bool LineData::equal(const LineData& l1, const LineDat for(; ; p1.next(), p2.next()) { // Advance to the next non-whitespace character or EOL. - while (p1.hasPeek() && isspace(p1.tryPeek()->toLatin1())) { + while (p1.hasPeek() && isspace((unsigned char)p1.tryPeek()->toLatin1())) { p1.next(); } - while (p2.hasPeek() && isspace(p2.tryPeek()->toLatin1())) { + while (p2.hasPeek() && isspace((unsigned char)p2.tryPeek()->toLatin1())) { p2.next(); } @ 1.1 log @kdiff3: fix ctype(3) usage Bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @