Skip to content
Snippets Groups Projects
Commit 08c11e20 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fix. Errors

parent 5ec7dafc
No related branches found
No related tags found
1 merge request!26Support 3689
......@@ -103,7 +103,7 @@ static PyTypeObject DapChainDatumObject_DapChainDatumObjectType = {
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
PyDapChainDatumObject_new, /* tp_new */
DapChainDatumObject_new, /* tp_new */
};
/* -------------------------------- */
......
......@@ -10,6 +10,7 @@ PyObject *PyDapChainDatumObject_new(PyTypeObject *type_object, PyObject *args, P
if (!PyArg_ParseTuple(args, "h|S|n", &type_id, &bytes, &data_size))
return NULL;
PyDapChainDatumObject *obj = (PyDapChainDatumObject*)PyType_GenericNew(type_object, args, kwds);
obj->datum = dap_chain_datum_create(type_id, bytes, data_size);
void* bytes_v = (void *)PyBytes_AsString((PyObject*)bytes);
obj->datum = dap_chain_datum_create(type_id, bytes_v, data_size);
return (PyObject *)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