summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAnsariel Hiller <Ansariel@users.noreply.github.com>2024-08-15 04:49:23 +0200
committerGitHub <noreply@github.com>2024-08-15 05:49:23 +0300
commit714c6983f4cad754661654c09e9629b9d7a0db11 (patch)
treea5b3854da47134323fda4a5a745fbe807010ad63 /indra
parentb93529526b2192e5ebb63dc364c9459724728336 (diff)
Add missing va_end (#2301)
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/pipeline.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index 1b2cffa6c9..a5c7350fd8 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -10668,6 +10668,7 @@ bool LLPipeline::hasAnyRenderType(U32 type, ...) const
{
if (mRenderTypeEnabled[type])
{
+ va_end(args);
return true;
}
type = va_arg(args, U32);