Commit: 2f8f79bcfaed8b0119cbcd0e8077c540e49b98c4
Author: Sergey Sharybin
Date:   Tue Jun 7 16:44:15 2016 +0200
Branches: compositor-2016
https://developer.blender.org/rB2f8f79bcfaed8b0119cbcd0e8077c540e49b98c4

Fix T48589: Compositor Backdrop crashes Blender

===================================================================

M       source/blender/compositor/operations/COM_ImageOperation.cpp

===================================================================

diff --git a/source/blender/compositor/operations/COM_ImageOperation.cpp 
b/source/blender/compositor/operations/COM_ImageOperation.cpp
index 624378f..7d59358 100644
--- a/source/blender/compositor/operations/COM_ImageOperation.cpp
+++ b/source/blender/compositor/operations/COM_ImageOperation.cpp
@@ -160,10 +160,10 @@ static void sampleImageAtLocation(ImBuf *ibuf, float x, 
float y, PixelSampler sa
 void ImageOperation::executePixelSampled(float output[4], float x, float y, 
PixelSampler sampler)
 {
        int ix = x, iy = y;
-       if (ix < 0 || iy < 0 || ix >= this->m_buffer->x || iy >= 
this->m_buffer->y) {
+       if (this->m_imageFloatBuffer == NULL && this->m_imageByteBuffer == 
NULL) {
                zero_v4(output);
        }
-       else if (this->m_imageFloatBuffer == NULL && this->m_imageByteBuffer == 
NULL) {
+       else if (ix < 0 || iy < 0 || ix >= this->m_buffer->x || iy >= 
this->m_buffer->y) {
                zero_v4(output);
        }
        else {

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to