2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-28 08:54:51 +00:00

changed exit to POSIX::_exit

git-svn-id: https://svn.fhem.de/fhem/trunk@3906 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
borisneubert 2013-09-15 13:37:47 +00:00
parent 9cbf4ea3bc
commit bf44d46891

@ -262,7 +262,11 @@ OWServer_Read($@)
delete $hash->{".path"};
print WRITER $ret;
close WRITER;
exit 0;
# see http://forum.fhem.de/index.php?t=tree&goto=94670
# changed from
# exit 0;
# to
POSIX::_exit(0);
}
Log3 $hash, 5, "OWServer child ID for reading '$path' is $pid";