4
4
mirror of https://github.com/H-uru/korman.git synced 2025-07-13 18:17:38 -04:00

Fix potential crash when converting images exported by GIMP.

This commit is contained in:
2021-04-26 20:40:37 -04:00
parent a20101ca28
commit d07592a3a9

View File

@ -283,6 +283,9 @@ static PyObject* pyGLTexture__enter__(pyGLTexture* self) {
// Load image into GL
if (ownit) {
PyObjectRef new_bind = PyObject_CallMethod(self->m_blenderImage, "gl_load", NULL);
if (!new_bind)
return NULL;
if (!PyLong_Check(new_bind)) {
PyErr_SetString(PyExc_TypeError, "gl_load() did not return a long");
return NULL;