1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

Added valgrind suppressions

This commit is contained in:
James Booth 2014-06-17 22:01:01 +01:00
parent 2f95340c3a
commit e2aa4d6fd1
2 changed files with 37 additions and 0 deletions

View File

@ -7,6 +7,8 @@
... ...
} }
# libotr
{ {
otrl_init otrl_init
Memcheck:Leak Memcheck:Leak
@ -17,3 +19,37 @@
... ...
} }
{
otrl_privkey_read
Memcheck:Leak
...
fun:otrl_privkey_read_FILEp
fun:otrl_privkey_read
...
}
# Ignore history module, needs to be rewritten
{
history_next
Memcheck:Leak
...
fun:history_next
...
}
{
history_previous
Memcheck:Leak
...
fun:history_previous
...
}
{
history_append
Memcheck:Leak
...
fun:history_append
...
}

View File

@ -258,6 +258,7 @@ wins_get_total_unread(void)
result += window->unread; result += window->unread;
curr = g_list_next(curr); curr = g_list_next(curr);
} }
g_list_free(values);
return result; return result;
} }