File: _imaging.c
Function: _getbbox
Error: passing uninitialized data (D.17819) as argument 3 to function at _imaging.c:1780
1771 static PyObject* 
1772 _getbbox(ImagingObject* self, PyObject* args)
1773 {
1774     int bbox[4];
1775     if (!ImagingGetBBox(self->image, bbox)) {
when considering range: -0x80000000 <= value <= -1
taking False path
1776 	Py_INCREF(Py_None);
1777 	return Py_None;
1778     }
1779 
1780     return Py_BuildValue("iiii", bbox[0], bbox[1], bbox[2], bbox[3]);
passing uninitialized data (D.17819) as argument 3 to function at _imaging.c:1780
found 1 similar trace(s) to this
1781 }