Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-06-15 17:56:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-15 17:56:54 +0400
commite11692bc73576ff2942f4e65b89bf75f4e29f301 (patch)
treee68f97f06b2ddada212d9975bef63c9f67949308 /source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp
parentd0ebb1df5761caec51ab73bfab41940e08d01aa0 (diff)
fix for other uninitialized values for the split viewer node as well as incorrect frees for gaussian blue nodes.
Diffstat (limited to 'source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp b/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp
index b5ae54299eb..b38ed28cd6a 100644
--- a/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp
+++ b/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp
@@ -152,7 +152,7 @@ void GaussianBokehBlurOperation::executePixel(float *color, int x, int y, Memory
void GaussianBokehBlurOperation::deinitExecution()
{
BlurBaseOperation::deinitExecution();
- delete this->gausstab;
+ delete [] this->gausstab;
this->gausstab = NULL;
}