diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-09 02:18:20 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-09 02:18:20 +0200 |
commit | 67876e6cb01871201048955868151971883aeaf4 (patch) | |
tree | e193b887b1daf6f622878274bbea54507a3c59d7 | |
parent | 762855f2554393dd3bcacd9b5d205765409f6a95 (diff) |
Follow up 364bd17: restore return value
-rw-r--r-- | indra/llcommon/StackWalker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/StackWalker.cpp b/indra/llcommon/StackWalker.cpp index 7808c36757..4ecff4ee69 100644 --- a/indra/llcommon/StackWalker.cpp +++ b/indra/llcommon/StackWalker.cpp @@ -415,7 +415,7 @@ public: GetUserNameA(szUserName, &dwSize); this->m_parent->OnSymInit(buf, symOptions, szUserName); - return false; + return true; } StackWalker *m_parent; |