[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Bugreports for heimdal?



On Fri, 27 Oct 2000, [iso-8859-1] Karsten Künne wrote:

> O.k., here they come. This all against version 0.3c.
> 
> First, an uninitialized variable is freed in gssapi/init_sec_context.
> This leads to crashes of GSSAPI applications. The fix:
> 
> *** ./lib/gssapi/init_sec_context.c.orig        Fri Oct 20 19:50:14 2000
> --- ./lib/gssapi/init_sec_context.c     Fri Oct 20 20:01:20 2000
> ***************
> *** 210,215 ****
> --- 210,218 ----
>       outbuf.length = 0;
>       outbuf.data   = NULL;
>   
> +     fwd_data.length = 0;
> +     fwd_data.data = NULL;
> + 
>       *minor_status = 0;
>   
>       *context_handle = malloc(sizeof(**context_handle));
> 

Indeed, this solves a problem we were having with imtest and the sasl
gssapi plugin, but I notice it hasn't been applied yet.

-D