From 306307c71522cb0a3f5834e5ea1621d6fae65991 Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Sat, 11 Jul 2020 15:10:16 +0100 Subject: [PATCH] stop crash if node adds itself in pc92 --- Changes | 3 +++ perl/DXDebug.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 840e34a7..99decfd2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ 11Jul20======================================================================= 1. Fix (embarrassing) gratuitous '#'s in bands.pl +2. IMPORTANT: certain PC92 strings can crash DXSpider if the nologchan debug + category is set (which reduces debug files to sizes that non-developers can + reasonably store (especially during big contests)), 10Jul20======================================================================= 1. Fix console.pl permissions problem when running as another user not in debug mode. Console.pl WILL NOT WORK in debug mode unless it is running diff --git a/perl/DXDebug.pm b/perl/DXDebug.pm index fcc60b86..9084062c 100644 --- a/perl/DXDebug.pm +++ b/perl/DXDebug.pm @@ -28,7 +28,7 @@ use 5.10.1; require Exporter; @ISA = qw(Exporter); -@EXPORT = qw(dbginit dbg dbgadd dbgsub dbglist dbgdump isdbg dbgclose dbgtrace confess croak cluck carp); +@EXPORT = qw(dbginit dbg dbgadd dbgsub dbglist dbgdump isdbg dbgclose dbgtrace dbgprintring confess croak cluck carp); use strict; use vars qw(%dbglevel $fp $callback $cleandays $keepdays $dbgringlth); -- 2.34.1