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:
authorGermano Cavalcante <germano.costa@ig.com.br>2021-05-18 15:39:31 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-05-20 17:04:04 +0300
commit4bb2a5b5cb700d4564603f882c750eca5544bde6 (patch)
treec93d05e2e7833f5e4c80cd1576a53bcd3159a187
parent92178c7e0ebf3bcf4dd5474eac0f9e768822820c (diff)
Fix T88345: Blender crash on GPUFrameBuffer creation
Misuse of indexes. `color_attachements` has only color ones while `config` has color and depth.
-rw-r--r--source/blender/python/gpu/gpu_py_framebuffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/gpu/gpu_py_framebuffer.c b/source/blender/python/gpu/gpu_py_framebuffer.c
index bc393aaafa4..77eb4a37624 100644
--- a/source/blender/python/gpu/gpu_py_framebuffer.c
+++ b/source/blender/python/gpu/gpu_py_framebuffer.c
@@ -316,9 +316,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;