4 Aug
2022
4 Aug
'22
9:07 a.m.
Hans Leidekker (@hans) commented about dlls/webservices/msg.c:
} } if (!match_current_element( reader, &body )) return WS_E_INVALID_FORMAT; - return WsReadNode( reader, NULL ); + if ((hr = WsReadNode( reader, NULL )) != S_OK) return hr; + + isfault = match_current_element_with_ns( reader, &fault, ns_env ); + hr = prop_set( msg->prop, msg->prop_count, WS_MESSAGE_PROPERTY_IS_FAULT, &isfault, sizeof(BOOL) ); + + return hr;
`` return prop_set( msg->prop, msg->prop_count, WS_MESSAGE_PROPERTY_IS_FAULT, &isfault, sizeof(isfault) ); `` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/583#note_5649