Skip to content
Snippets Groups Projects
Commit 084626e6 authored by Richard Berger's avatar Richard Berger
Browse files

Fixes coverity issue CID 179426

parent a7d790a8
No related branches found
No related tags found
No related merge requests found
......@@ -313,6 +313,9 @@ void PythonImpl::invoke_function(int ifunc, char *result)
}
} else if (itype == PTR) {
pValue = PY_VOID_POINTER(lmp);
} else {
PyGILState_Release(gstate);
error->all(FLERR,"Unsupported variable type");
}
PyTuple_SetItem(pArgs,i,pValue);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment