我想从带有 ctypes 的 C/C++ 库中获取一些字符串到 python 中。我的代码如下所示:
库中的代码:
const char* get(struct something *x)
{
[...]
// buf is a stringstream
return strdup(buf.str().c_str());
}
void freeme(char *ptr)
{
free(ptr);
}
Python代码:
fillprototype(lib.get, c_char_p, POINTER(some_model)])
fillprototype(lib.freeme, None, [c_char_p])
// what i want to do here: get a string into python so that i can work
// with it and release the memory in the lib.
c_str = lib.get(some_model)
y = ''.join(c_str)
lib.freeme(c_str)
如果我 print() c_str,一切都在那里。问题出在(或似乎是)在 Python 的最后一行。我无法释放内存 - 库得到了错误的指针。我在这里做错了什么?(请不要建议 boost::python 左右)。
*** glibc detected *** python2: munmap_chunk(): invalid pointer: 0x00000000026443fc ***