Skip to content
Snippets Groups Projects
Commit 449f09e5 authored by Constantin P.'s avatar Constantin P. 💬
Browse files

...

parent d4ab9f45
No related branches found
No related tags found
1 merge request!417...
...@@ -82,7 +82,8 @@ PyObject *dap_chain_load_from_cfg_py(PyObject *self, PyObject *args){ ...@@ -82,7 +82,8 @@ PyObject *dap_chain_load_from_cfg_py(PyObject *self, PyObject *args){
if (!PyArg_ParseTuple(args, "s|O|s", &chain_net_name, &obj_net_id, &cfg_name)) if (!PyArg_ParseTuple(args, "s|O|s", &chain_net_name, &obj_net_id, &cfg_name))
return NULL; return NULL;
PyObject *res_obj = _PyObject_New(&DapChainObjectType); PyObject *res_obj = _PyObject_New(&DapChainObjectType);
((PyDapChainObject*)res_obj)->chain_t = dap_chain_load_from_cfg(chain_net_name, ((PyDapChainNetIdObject*)obj_net_id)->net_id, cfg_name); dap_config_t *l_chain_config = dap_config_open(cfg_name);
((PyDapChainObject*)res_obj)->chain_t = dap_chain_load_from_cfg(chain_net_name, ((PyDapChainNetIdObject*)obj_net_id)->net_id, l_chain_config);
return Py_BuildValue("O", &res_obj); return Py_BuildValue("O", &res_obj);
} }
......
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