diff options
author | nat-goodspeed <nat@lindenlab.com> | 2023-05-10 09:14:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 09:14:14 -0400 |
commit | 69d444826d1feb58ae48f893083e22c01a50a93f (patch) | |
tree | 73c20febab8061217597ce21560152c800f7c7ab /indra/llrender | |
parent | 0b1c0aa242db6e789e0706f5ebfb9c80f98da9d3 (diff) | |
parent | f728808d938666a01f73a039c861358fc4b02a9e (diff) |
Merge pull request #208 from secondlife/SL-19690
SL-19690: Follow up on Rye Mutt's fix for shutdown crashes.
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llimagegl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llimagegl.h b/indra/llrender/llimagegl.h index 87fb9e363e..243aeaea25 100644 --- a/indra/llrender/llimagegl.h +++ b/indra/llrender/llimagegl.h @@ -340,7 +340,7 @@ public: template <typename CALLABLE> bool post(CALLABLE&& func) { - return getQueue().postIfOpen(std::forward<CALLABLE>(func)); + return getQueue().post(std::forward<CALLABLE>(func)); } void run() override; |