double free
free(): double free detected in tcache 2
为Eigen/src/Core/util/Memory.h
文件位置
/** \internal Frees memory allocated with conditional_aligned_malloc */
template<bool Align> EIGEN_DEVICE_FUNC inline void conditional_aligned_free(void *ptr)
{
aligned_free(ptr);
}
bool optimieze()
{
/*
....
使用g2o一些定义优化器以及添加顶点的操作
*/
for(int i = 0; i < 5; i++)
{
/*
....
使用g2o一些定义边和进行优化的操作
*/
bool correct = fun();
if(correct)
{
return false;
}
else
{
// 这里没写返回值
}
}
// 报错原因:这一行缺少了返回值,应该加上代码 <return true;>这样就不会报错了
}
原因是一个bool
类型的函数有一个if
分支会导致没有返回值,完后函数退出时调用顶点的析构函数时候导致了重复释放内存的报错。