forked from aws/aws-encryption-sdk-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalgrind.suppressions
42 lines (42 loc) · 1.69 KB
/
valgrind.suppressions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Probably a glibc bug. See e.g.
# https://svn.boost.org/trac10/ticket/12188
# https://bugzilla.redhat.com/show_bug.cgi?id=754026
{
libc_nss_freeres_bug
Memcheck:Free
fun:free
fun:__libc_freeres
fun:_vgnU_freeres
}
# Conditional jump or move depends on uninitialised value(s) warnings
# from the AWS C++ SDK's logging system
{
aws_cpp_sdk_log_uninit
Memcheck:Cond
...
# std::ostream& Aws::Client::operator<< <Aws::Client::CoreErrors>(std::ostream&, Aws::Client::AWSError<Aws::Client::CoreErrors> const&)
fun:_ZN3Aws6ClientlsINS0_10CoreErrorsEEERSoS3_RKNS0_8AWSErrorIT_EE
# aws::Client::AWSJsonClient::BuildAWSError(std::shared_ptr<Aws::Http::HttpResponse> const&)
fun:_ZNK3Aws6Client13AWSJsonClient13BuildAWSErrorERKSt10shared_ptrINS_4Http12HttpResponseEE
...
}
{
aws_cpp_sdk_log_uninit_2
Memcheck:Value4
...
# std::ostream& Aws::Client::operator<< <Aws::Client::CoreErrors>(std::ostream&, Aws::Client::AWSError<Aws::Client::CoreErrors> const&)
fun:_ZN3Aws6ClientlsINS0_10CoreErrorsEEERSoS3_RKNS0_8AWSErrorIT_EE
# aws::Client::AWSJsonClient::BuildAWSError(std::shared_ptr<Aws::Http::HttpResponse> const&)
fun:_ZNK3Aws6Client13AWSJsonClient13BuildAWSErrorERKSt10shared_ptrINS_4Http12HttpResponseEE
...
}
{
aws_cpp_sdk_log_uninit_3
Memcheck:Value8
...
# std::ostream& Aws::Client::operator<< <Aws::Client::CoreErrors>(std::ostream&, Aws::Client::AWSError<Aws::Client::CoreErrors> const&)
fun:_ZN3Aws6ClientlsINS0_10CoreErrorsEEERSoS3_RKNS0_8AWSErrorIT_EE
# aws::Client::AWSJsonClient::BuildAWSError(std::shared_ptr<Aws::Http::HttpResponse> const&)
fun:_ZNK3Aws6Client13AWSJsonClient13BuildAWSErrorERKSt10shared_ptrINS_4Http12HttpResponseEE
...
}