commit 5a91f0786816de07f22b55e3fd622b1d5646bf8f Author: Robert Rothenberg Date: Thu May 28 13:36:57 2026 +0100 Fix CVE-2026-8594 diff --git a/lib/Text/LineFold.pm b/lib/Text/LineFold.pm index a0bd4db..2afd5c4 100644 --- a/lib/Text/LineFold.pm +++ b/lib/Text/LineFold.pm @@ -410,7 +410,7 @@ sub fold { if ($s =~ $special_break) { $result .= $s; } else { - $result .= $self->break($str); + $result .= $self->break($s); } }