Added Valgrind suppression file, from Louis Delacroix

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3717 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2011-12-28 20:24:21 +00:00
parent 3e8b8bf30e
commit af37314aaf
2 changed files with 48 additions and 0 deletions
+1
View File
@@ -1,4 +1,5 @@
Changes towards version 0.8: Changes towards version 0.8:
- Added Valgrind suppression file, from Louis Delacroix
- Fix several memory leaks, from Loius Delacroix - Fix several memory leaks, from Loius Delacroix
- Some cleanups / warnings fixes, from Louis Delacroix - Some cleanups / warnings fixes, from Louis Delacroix
- Added a free callback function for the values of the key-value pairs - Added a free callback function for the values of the key-value pairs
+47
View File
@@ -0,0 +1,47 @@
# Valgrind suppression file.
# Usage:
# valgrind --suppressions=sc2-valgrind.supp --log-file=sc2.vglog ./uqm-debug
{
memory leaks in SDL
Memcheck:Leak
...
obj:*/lib/libSDL*
}
{
memory leaks in PulseAudio
Memcheck:Leak
...
obj:*/lib/libpulse*
}
{
memory leaks in libasound
Memcheck:Leak
...
obj:*/lib/libasound*
}
{
ioctl param in libasound
Memcheck:Param
ioctl(arg)
...
obj:*/lib/libasound*
}
{
semctl param in libasound
Memcheck:Param
semctl(IPC_SET, arg.buf)
...
obj:*/lib/libasound*
}
{
memory leaks in libX11
Memcheck:Leak
...
obj:*/lib/libX11*
}
{
memory leaks in libmikmod
Memcheck:Leak
...
obj:*/lib/libmikmod*
}