2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

*** empty log message ***

git-svn-id: https://svn.fhem.de/fhem/trunk@731 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
borisneubert 2010-10-24 09:21:44 +00:00
parent 3e6b7b6970
commit b580c66189

View File

@ -628,7 +628,7 @@ getFhtBuffer($)
return getFhtMin($io) if(IsDummy($io->{NAME}));
for(;;) {
return 0 if(!define($io->{FD})); # Avoid crash if the CUL/FHZ is absent
return 0 if(!defined($io->{FD})); # Avoid crash if the CUL/FHZ is absent
my $msg = CallFn($io->{NAME}, "GetFn", $io, (" ", "fhtbuf"));
Log 5, "getFhtBuffer: $count $msg";
return hex($1) if($msg && $msg =~ m/=> ([0-9A-F]+)$/i);