[Bf-blender-cvs] [f0f189de76a] master: Fix ImBuf.load failure showing filename as garbage bytes

Colin Basnett noreply at git.blender.org
Tue Oct 1 20:12:46 CEST 2019


Commit: f0f189de76a3ac44208053a441a81c86718e6ef2
Author: Colin Basnett
Date:   Tue Oct 1 19:36:15 2019 +0200
Branches: master
https://developer.blender.org/rBf0f189de76a3ac44208053a441a81c86718e6ef2

Fix ImBuf.load failure showing filename as garbage bytes

Differential Revision: https://developer.blender.org/D5879

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

M	source/blender/python/generic/imbuf_py_api.c

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

diff --git a/source/blender/python/generic/imbuf_py_api.c b/source/blender/python/generic/imbuf_py_api.c
index ff5e4769f19..6a7f899488b 100644
--- a/source/blender/python/generic/imbuf_py_api.c
+++ b/source/blender/python/generic/imbuf_py_api.c
@@ -463,7 +463,7 @@ static PyObject *M_imbuf_load(PyObject *UNUSED(self), PyObject *args, PyObject *
 
   const int file = BLI_open(filepath, O_BINARY | O_RDONLY, 0);
   if (file == -1) {
-    PyErr_Format(PyExc_IOError, "load: %s, failed to open file '%s'", strerror(errno));
+    PyErr_Format(PyExc_IOError, "load: %s, failed to open file '%s'", strerror(errno), filepath);
     return NULL;
   }



More information about the Bf-blender-cvs mailing list