From f9ed34cce92e07e1f84cf8c34847920f70fdce6d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 22 Jul 2012 15:15:39 +0000 Subject: [PATCH] fix for compositor new[]/delete[] mismatch. --- .../blender/compositor/operations/COM_VectorBlurOperation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/compositor/operations/COM_VectorBlurOperation.cpp b/source/blender/compositor/operations/COM_VectorBlurOperation.cpp index 8934dd80ad8..5961514f2fd 100644 --- a/source/blender/compositor/operations/COM_VectorBlurOperation.cpp +++ b/source/blender/compositor/operations/COM_VectorBlurOperation.cpp @@ -66,7 +66,7 @@ void VectorBlurOperation::deinitExecution() this->m_inputSpeedProgram = NULL; this->m_inputZProgram = NULL; if (this->m_cachedInstance) { - delete this->m_cachedInstance; + delete [] this->m_cachedInstance; this->m_cachedInstance = NULL; } }