@@ -2735,6 +2735,10 @@ PyMODINIT_FUNC initxc(void)
return;
xc_error_obj = PyErr_NewException(PKG ".Error", PyExc_RuntimeError, NULL);
+ if (xc_error_obj == NULL) {
+ Py_DECREF(m);
+ return;
+ }
zero = PyInt_FromLong(0);
/* KAF: This ensures that we get debug output in a timely manner. */
@@ -987,6 +987,10 @@ PyMODINIT_FUNC initxs(void)
return;
xs_error = PyErr_NewException(PKG ".Error", PyExc_RuntimeError, NULL);
+ if (xs_error == NULL) {
+ Py_DECREF(m);
+ return;
+ }
Py_INCREF(&xshandle_type);
PyModule_AddObject(m, CLS, (PyObject *)&xshandle_type);
Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> --- tools/python/xen/lowlevel/xc/xc.c | 4 ++++ tools/python/xen/lowlevel/xs/xs.c | 4 ++++ 2 files changed, 8 insertions(+)