From ceefc5b4bfe6afe9359abf8d4689501223e15bbc Mon Sep 17 00:00:00 2001 From: hogliux Date: Mon, 12 Sep 2016 18:06:36 +0100 Subject: [PATCH] Avoided a dead-lock in a recent commit to WebInputStream on mac --- modules/juce_core/native/juce_mac_Network.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_mac_Network.mm b/modules/juce_core/native/juce_mac_Network.mm index d10ec4c426..91e455d0ad 100644 --- a/modules/juce_core/native/juce_mac_Network.mm +++ b/modules/juce_core/native/juce_mac_Network.mm @@ -288,7 +288,7 @@ public: [task resume]; while (! threadShouldExit()) - wait (-1); + wait (5); hasFinished = true; initialised = true;