From a9040dcca1bb34166098be19951bcae4f42137f2 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sun, 17 Nov 2024 02:59:19 +0100 Subject: [PATCH] nomoney: fix memory leak --- plugins/nomoney | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/nomoney b/plugins/nomoney index b31ba6d..6fdf69e 100644 --- a/plugins/nomoney +++ b/plugins/nomoney @@ -137,9 +137,10 @@ sub hook_abort($class, $cart, @) { sub hook_checkout_done($class, $cart, $username, $transaction_id, @) { my $n = $unresolved{$cart}->size or return; - print "\n"; + _inform($unresolved{$cart}, $username); + delete $unresolved{$cart}; my $message = $n == 1 ? "THIS ENTRY WAS IGNORED" : "THESE ENTRIES WERE IGNORED"; say "\e[1;4m$message.\e[0m" if $n;