[PATCH 1/3] server: Introduced iosb struct for server-side IO_STATUS_BLOCK representation and use it in irp_call.

Alexandre Julliard julliard at winehq.org
Fri Dec 2 08:55:31 CST 2016


Jacek Caban <jacek at codeweavers.com> writes:

> +/* release iosb reference */
> +void release_iosb( struct iosb *iosb )
> +{
> +    if (--iosb->refcount) return;
> +
> +    free( iosb->in_data );
> +    free( iosb->out_data );
> +    free( iosb );
> +}

I think you should use a proper server object instead.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list