2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 05:06:35 +00:00

;quit bug fixed

git-svn-id: https://svn.fhem.de/fhem/trunk@1527 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2012-05-03 05:41:24 +00:00
parent ece9ec7aac
commit f83eacdd0a

View File

@ -685,7 +685,8 @@ AnalyzeCommandChain($$)
$cmd =~ s/;;/SeMiCoLoN/g;
@cmdList = split(";", $cmd);
while(my $subcmd = shift @cmdList) {
my $subcmd;
while(defined($subcmd = shift @cmdList)) {
$subcmd =~ s/SeMiCoLoN/;/g;
my $lret = AnalyzeCommand($c, $subcmd);
push(@ret, $lret) if(defined($lret));