|
From: Darryl M. <dar...@ne...> - 2006-06-18 15:59:48
|
I'm working with OpenSSL and it seems to generate a lot of warnings
(maybe thats a bad thing) but I'm having a problem configuring up the
supressions of all functions, because it stackstrace insists on mappings
for:
{
<insert a suppression name here>
Memcheck:Cond
fun:BN_ucmp
fun:BN_mod_inverse
fun:BN_BLINDING_create_param
fun:RSA_setup_blinding
fun:rsa_get_blinding
fun:RSA_eay_private_decrypt
fun:RSA_private_decrypt
fun:ssl3_get_client_key_exchange
fun:ssl3_accept
fun:SSL_accept
fun:ssl23_get_client_hello
fun:ssl23_accept
}
into something file:
{
<insert a suppression name here>
Memcheck:Cond
fun:*
fun:*
fun:*
fun:*
fun:*
fun:*
fun:*
fun:ssl*
# fun:ssl3_accept
# fun:SSL_accept
# fun:ssl23_get_client_hello
# fun:ssl23_accept
}
what I really want do say is just (i.e. ignore the depth, maybe a
special setting of "fun:**" could be programmed to mean that? ) :
{
<insert a suppression name here>
Memcheck:Cond
fun:*
fun:ssl*
}
is there any work around ?
|