From ea7b00c64fcd3bcff4a4d1455e0ef334bdd6a6ec Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Tue, 18 May 2021 09:39:31 -0300 Subject: Fix T88345: Blender crash on GPUFrameBuffer creation Misuse of indexes. `color_attachements` has only color ones while `config` has color and depth. --- source/blender/python/gpu/gpu_py_framebuffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python') diff --git a/source/blender/python/gpu/gpu_py_framebuffer.c b/source/blender/python/gpu/gpu_py_framebuffer.c index 7f64cb90a97..0efc0713538 100644 --- a/source/blender/python/gpu/gpu_py_framebuffer.c +++ b/source/blender/python/gpu/gpu_py_framebuffer.c @@ -323,9 +323,9 @@ static PyObject *pygpu_framebuffer__tp_new(PyTypeObject *UNUSED(self), return NULL; } - for (int i = 1; i <= color_attachements_len; i++) { + for (int i = 0; i < color_attachements_len; i++) { PyObject *o = PySequence_GetItem(color_attachements, i); - bool ok = pygpu_framebuffer_new_parse_arg(o, &config[i]); + bool ok = pygpu_framebuffer_new_parse_arg(o, &config[i + 1]); Py_DECREF(o); if (!ok) { return NULL; -- cgit v1.2.3