Skip to content

Commit

Permalink
Fix false positive warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Sep 3, 2023
1 parent 4bfdaeb commit d2c4f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feature-web.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ sub get_php_fpm_port_error
else {
my ($clash, $conf, $port, $otherid) = &check_php_fpm_port_clash($d);
my $cd = $clash ? &get_domain($clash) : undef;
$cd = undef if ($cd->{'id'} eq $d->{'id'});
$cd = undef if ($cd && $cd->{'id'} eq $d->{'id'});
if ($cd) {
# Owned by another domain
if ($otherid && $otherid ne $cd->{'id'}) {
Expand Down

0 comments on commit d2c4f0a

Please sign in to comment.