iwla_convert : Skip empty values or empty keys in hashes

This commit is contained in:
Gregory Soutade 2017-09-06 07:44:43 +02:00
parent 8255be7ec8
commit f8a8cb26fb
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ sub dumpHash {
while( my ($k,$v) = each(%hash) ) {
$k =~ s/\'/\\\'/g;
$v =~ s/\'/\\\'/g;
next if ($k == "" || $v == "");
next if ($k eq "" || $v eq "");
if ($first == 0)
{
print $FIC ", ";