20.FATAL :110524:0934:33.0 NGSTOT/lib/ut1red: JD= 2455683 out of range of ut1 table, JDT1= 2448622 JDT2= 2455469?
>>从这个错误提示,我们清楚看到,utl表的数据不能满足项目需要,去http://sopac.ucsd.edu/processing/gamit/下载最新的ut1.usno表。
Valgrind可以识别的错误及错误提示
malloc/free: in use at exit 内存在退出前没有被释放
Invalid write of size 非法写内存:一般为数组越界
Invalid read of size 非法读内存:一般为数组越界
definitely lost/possibly lost/still reachable in loss record 内存未释放
Invalid free() / delete / delete[] 同一指针被多次释放
Source and destination overlap 内存重叠(一般是使strncpy,memcpy引起)
Syscall param contains uninitialised byte 调用系统函数时传入了未初始化的变量
Conditional jump or move depends on uninitialised value 条件判断时使用了未初始化的变量
Access not within mapped region/Stack overflow 栈溢出
Mismatched free() / delete / delete [] new--delete malloc--free搭配错误
启动matlab时有个警告 :
Warning: MATLAB Toolbox Path Cache is out of date and is not being used.照提示键入
>>Type 'help toolbox_path_cache' for more info
然后是一个文档。
看到这里即可解决问题.文档中有操作的截图.