summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2023-11-15 11:33:39 +0100
committerMoonchild <moonchild@palemoon.org>2023-11-15 12:19:13 +0100
commit465ae3c5e5d4374c70c81be92cbd66e26670a647 (patch)
tree6c58d8c3cc8ad8c505489dedae8b2a4961532e5d
parentf1f7466a72f963807e54123fb9b5e2d2ec6143b1 (diff)
downloaduxp-465ae3c5e5d4374c70c81be92cbd66e26670a647.tar.gz
Revert "No Issue - add mutex in EventSource"
This reverts commit e4643f5bed2cdc600fc29900fe3b4d22e25763bc. Apparently causes deadlocks in Linux.
-rw-r--r--dom/base/EventSource.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/dom/base/EventSource.cpp b/dom/base/EventSource.cpp
index 32329098e2..06cabc3098 100644
--- a/dom/base/EventSource.cpp
+++ b/dom/base/EventSource.cpp
@@ -190,7 +190,6 @@ public:
bool IsClosed()
{
- MutexAutoLock lock(mMutex);
return ReadyState() == CLOSED;
}