> You are the third i know of who has problems in the area
> stunnel/OpenSSL/engine, see in the openssl-dev mailing list the mails
> with the subject "bug in 0.9.7d (on alpha/Tru64 UNIX V4.0F)".
> Unfortunately i have more urgent topics to work on so i don't know when
> i have time to look further into this problem area.
what i discovered is:
crypto/stack/stack.c
char *sk_value(const STACK *st, int i)
{
if(st == NULL) return NULL;
return st->data[i];
}
st has a member named 'num' which is set to 4 in my case. so if i add the
line:
if(st->num < i) return 0;
the tunnel is working fine. i do not know if this is an official solution,
but i do know that it is working as a patch!
[s]
______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]