opcservices: Add missing break (coverity).

Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Fabian Maurer 2018-09-16 14:13:48 +02:00 committed by Alexandre Julliard
parent 9a94f55958
commit 6c77083690
1 changed files with 1 additions and 0 deletions

View File

@ -607,6 +607,7 @@ static HRESULT WINAPI opc_content_stream_Seek(IStream *iface, LARGE_INTEGER move
break;
case STREAM_SEEK_END:
pos.QuadPart = stream->content->size.QuadPart + move.QuadPart;
break;
default:
WARN("Unknown origin mode %d.\n", origin);
return E_INVALIDARG;