summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-03-12 03:27:24 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-03-12 03:27:24 -0700
commitab60c46a917366574fa7292b6e7142ece858bec5 (patch)
tree4a5e9ae1d5d98edb873900a123d8d3f84dedb84f
parent067a9cdfa903f3657ffd20008ae2933fb82718c8 (diff)
Fix for linux (and likely other platform) shutdown crash from mismatched alloc/free in VBOPool client data
-rw-r--r--indra/llrender/llvertexbuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp
index 1d257d8415..c6f1d76653 100644
--- a/indra/llrender/llvertexbuffer.cpp
+++ b/indra/llrender/llvertexbuffer.cpp
@@ -310,7 +310,7 @@ void LLVBOPool::cleanup()
if (r.mClientData)
{
- ll_aligned_free_16((void*) r.mClientData);
+ ll_aligned_free((void*) r.mClientData);
}
l.pop_front();