1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Linux: WebBrowserComponent: Terminate subprocess if main process crashes

This commit is contained in:
attila 2025-10-14 15:53:50 +02:00 committed by Attila Szarvas
parent be58c6de30
commit a1a56cd54c

View file

@ -473,7 +473,7 @@ public:
auto actual = read (inChannel, &dst[pos], static_cast<size_t> (len - pos));
if (actual < 0)
if (actual <= 0)
{
if (errno == EINTR)
continue;