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:
Diffstat (limited to 'source/blender/freestyle/intern/image/Image.h')
-rw-r--r--source/blender/freestyle/intern/image/Image.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/image/Image.h b/source/blender/freestyle/intern/image/Image.h
index b854e411a83..c42e47a670b 100644
--- a/source/blender/freestyle/intern/image/Image.h
+++ b/source/blender/freestyle/intern/image/Image.h
@@ -238,8 +238,9 @@ class RGBImage : public FrsImage {
virtual ~RGBImage()
{
- if (_rgb)
+ if (_rgb) {
delete[] _rgb;
+ }
}
inline float getR(unsigned x, unsigned y) const
@@ -376,8 +377,9 @@ class GrayImage : public FrsImage {
virtual ~GrayImage()
{
- if (_lvl)
+ if (_lvl) {
delete[] _lvl;
+ }
}
inline void setPixel(unsigned x, unsigned y, float v)