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:
@@ -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
|
||||||
|
|||||||
@@ -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*
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user