Re: [PATCH 1/3] server: Introduced iosb struct for server-side IO_STATUS_BLOCK representation and use it in irp_call.
2 Dec
2016
2 Dec
'16
2:55 p.m.
Jacek Caban <jacek(a)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(a)winehq.org
3300
Age (days ago)
3300
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard