From ec62c8f00471a3ee609e89c683fa244806233506 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Tue, 7 May 2019 15:02:40 +0200 Subject: [PATCH] Fix error with uninitialized variable. --- acQuery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acQuery.pl b/acQuery.pl index 992463e..7ca1767 100755 --- a/acQuery.pl +++ b/acQuery.pl @@ -264,7 +264,7 @@ if ( $hasprofile ) { } my $query; -my $conditionstring; +my $conditionstring = ''; if ( @conditions ){ $conditionstring = ' WHERE ';