(dpdk f-stack)-堆栈溢出-野指针-内存泄露(问题定位)
Posted ygmdream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(dpdk f-stack)-堆栈溢出-野指针-内存泄露(问题定位)相关的知识,希望对你有一定的参考价值。
目的:
堆栈溢出 野指针 内存泄露:使用gcc的 -fsanitize=address 定位问题。
[root@ test]# yum install libasan
[root@ test]# cat test.c
int main()
int array[10];
array[11] = 11;
return 0;
[root@ test]# gcc -fsanitize=address -O1 -fno-omit-frame-pointer -g -O0 test.c -o test
./test
=================================================================
==14020==ERROR: AddressSaniti
以上是关于(dpdk f-stack)-堆栈溢出-野指针-内存泄露(问题定位)的主要内容,如果未能解决你的问题,请参考以下文章