diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-22 16:38:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 16:38:34 +0100 |
commit | 0e3973cade9348946a3675a242723711b9b75ad1 (patch) | |
tree | 243fc6758f175e0e9d2d2a8581b7072400b63566 /quotest/.valgrind.supp | |
parent | 9fb2970eadf810f7ae38389b333b543c22fb8be7 (diff) | |
parent | 390162a0c707c51590acb27df81e98a85d3b6cf7 (diff) | |
download | libquotient-0e3973cade9348946a3675a242723711b9b75ad1.tar.gz libquotient-0e3973cade9348946a3675a242723711b9b75ad1.zip |
Merge pull request #440 from ognarb/callcandidateupdate
Add more properties to CallCandidateEvent
Diffstat (limited to 'quotest/.valgrind.supp')
-rw-r--r-- | quotest/.valgrind.supp | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/quotest/.valgrind.supp b/quotest/.valgrind.supp new file mode 100644 index 00000000..d65fb52e --- /dev/null +++ b/quotest/.valgrind.supp @@ -0,0 +1,68 @@ +{ + libc_dirty_free_on_exit + Memcheck:Free + fun:free + fun:__libc_freeres + fun:_vgnU_freeres + fun:__run_exit_handlers + fun:exit +} + +{ + QAuthenticator + Memcheck:Leak + match-leak-kinds: possible + ... + fun:_ZN14QAuthenticator6detachEv +} + +{ + QTimer + Memcheck:Leak + match-leak-kinds: possible + fun:_Znwm + fun:_ZN7QObjectC1EPS_ + fun:_ZN6QTimerC1EP7QObject +} + +{ + QSslConfiguration + Memcheck:Leak + match-leak-kinds: possible + fun:_Znwm + ... + fun:_ZN17QSslConfigurationC1Ev +} + +{ + libcrypto_ASN1 + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + ... + fun:ASN1_item_ex_d2i +} + +{ + malloc_from_libcrypto + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:CRYPTO_malloc + ... + obj:/lib/x86_64-linux-gnu/libcrypto.so.* +} + +{ + Slot_activation_from_QtNetwork + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:inflateInit2_ + obj:/*/*/*/libQt5Network.so.* + ... + fun:_ZN11QMetaObject8activateEP7QObjectiiPPv + ... + fun:_ZN11QMetaObject8activateEP7QObjectiiPPv + obj:/*/*/*/libQt5Network.so.* +}
\ No newline at end of file |