summaryrefslogtreecommitdiff
path: root/indra/llcommon/llwatchdog.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-03-03 19:49:38 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-03-09 23:18:56 +0200
commit6eab9e63f6b4ce3b94878b0a9aa82aca5237ae2e (patch)
tree00fdc062ec00d1c400943ca95ae75646a691d6ab /indra/llcommon/llwatchdog.cpp
parent7e7ae1c04ad73c0543729d79e8d24985fec91781 (diff)
#5084 Convert watchdog to a simpleton
Diffstat (limited to 'indra/llcommon/llwatchdog.cpp')
-rw-r--r--indra/llcommon/llwatchdog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llwatchdog.cpp b/indra/llcommon/llwatchdog.cpp
index 1bc1283d0b..d3242a6c96 100644
--- a/indra/llcommon/llwatchdog.cpp
+++ b/indra/llcommon/llwatchdog.cpp
@@ -87,7 +87,7 @@ void LLWatchdogEntry::start()
void LLWatchdogEntry::stop()
{
// this can happen very late in the shutdown sequence
- if (!LLWatchdog::wasDeleted())
+ if (LLWatchdog::instanceExists())
{
LLWatchdog::getInstance()->remove(this);
}