我在我的程序中使用来自 g++ 的 AddressSanitizer,并且有一些输出我无法理解和采取行动。
我之前使用的是 g++-4.8.4,我很确定没有泄漏报告,但我最近切换到 g++-5.2.1,现在我有新的错误报告。我猜gcc5变得更好了。
但是,其中一些非常神秘,例如:
==8192==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 6960 byte(s) in 174 object(s) allocated from:
#0 0x7f4a73eac5b1 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x945b1)
#1 0x7f4a3ccd1d81 (/usr/lib/x86_64-linux-gnu/dri/i965_dri.so+0x27ad81)
Direct leak of 2560 byte(s) in 4 object(s) allocated from:
#0 0x7f4a73eac76a in realloc (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x9476a)
#1 0x7f4a53c34839 (/usr/lib/x86_64-linux-gnu/libfontconfig.so.1+0x1b839)
Direct leak of 2144 byte(s) in 57 object(s) allocated from:
#0 0x7f4a73eac44a in malloc (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x9444a)
#1 0x7f4a5f242b7c (/usr/lib/x86_64-linux-gnu/libxcb.so.1+0xbb7c)
下一个更清楚:
Direct leak of 512 byte(s) in 1 object(s) allocated from:
#0 0x7f4a73ead1ba in operator new(unsigned long) (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x951ba)
... more lines pinpointing the issue in a file and the call stack.
前三个报告是否与最后一个报告相关联?如果他们是独立的,有没有办法找出问题所在?
谢谢。