Valgrind reports uninitialized values on empty C program

帅比萌擦擦* 提交于 2019-12-04 00:17:29

This is a know issue with valgrind which is typically addressed using valgrind suppressions. Assuming the issue has been reported for your distro, the suppressions list should be updated shortly and will disappear in the next update.

For now, it is safe to ignore the message.

If it bothers you, you can maintain your own suppressions file and use it until your distro updates the default file (usually /var/lib/valgrind/default.supp).

This is a "problem" in the dynamic linker and it is common. It appears before main() is called. You can ignore the message.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!