We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd500a6 commit c6f0262Copy full SHA for c6f0262
asciidtype/asciidtype/src/dtype.c
@@ -21,6 +21,7 @@ get_value(PyObject *scalar)
21
PyObject *res_bytes = PyUnicode_AsASCIIString(value);
22
Py_DECREF(value);
23
char *res = PyBytes_AsString(res_bytes);
24
+ Py_DECREF(res_bytes);
25
if (res == NULL) {
26
return NULL;
27
}
0 commit comments