Commit 1ccc5216 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

webservices: Fix unsupported options detection (Coverity).

parent 9b6881a5
......@@ -2761,7 +2761,7 @@ static HRESULT read_type_text( struct reader *reader, const WS_FIELD_DESCRIPTION
static WS_READ_OPTION map_field_options( WS_TYPE type, ULONG options )
{
if (options & !(WS_FIELD_POINTER | WS_FIELD_OPTIONAL))
if (options & ~(WS_FIELD_POINTER | WS_FIELD_OPTIONAL))
{
FIXME( "options %08x not supported\n", options );
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment