[gnutls-dev] [PATCH] fix for a bug in gnutls_recv_handshake()
Nikos Mavroyanopoulos
nmav at hellug.gr
Thu Jan 17 14:03:01 CET 2002
On Wed, 16 Jan 2002 12:34:09 +0100 Guillaume Morin <guillaume at morinfr.org> wrote:
> Hi,
> I made this patch for a problem I've been experiencing.
> The details are in the Debian BTS http://bugs.debian.org/123616.
> in STATE8, _gnutls_recv_handshake_header returns 0, but since malloc is
> not called for this value, dataptr is unitialized. Here is the fix
> (you'll note that I have forced its initialization what is not needed,
> but since it hid the bug, I think it is cleaner...)
Thank you for tracing this problem. I'll commit this patch to the cvs.
However It seems strange that _gnutls_recv_handshake_header() returned 0.
Does gnutls work in this system with this patch applied?
> --- lib/gnutls_handshake.c.old Tue Jan 15 00:53:36 2002
> +++ lib/gnutls_handshake.c Tue Jan 15 00:55:39 2002
> @@ -865,7 +865,7 @@
> {
> int ret;
> uint32 length32 = 0;
> - opaque *dataptr;
> + opaque *dataptr = NULL;
> HandshakeType recv_type;
>
> ret = _gnutls_recv_handshake_header(state, type, &recv_type);
> @@ -890,7 +890,7 @@
> return GNUTLS_E_UNEXPECTED_PACKET_LENGTH;
> }
>
> - if (dataptr == NULL) {
> + if (dataptr == NULL && length32) {
> gnutls_assert();
> return GNUTLS_E_MEMORY_ERROR;
> }
>
> HTH.
>
> PS: Please keep me CC'ed since I am not subscribed.
>
> --
> Guillaume Morin <guillaume at morinfr.org>
>
> Debian - What your mom would use if it were twenty times easier.
> http://www.copyleft.net/
--
Nikos Mavroyanopoulos
mailto:nmav at hellug.gr
More information about the Gnutls-devel
mailing list