Skip to content
Snippets Groups Projects
Commit 6c770836 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard
Browse files

opcservices: Add missing break (coverity).

parent 9a94f559
Branches
Tags
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment