[PATCH] opcservices: Add missing break (coverity)

Fabian Maurer dark.shadow4 at web.de
Sun Sep 16 07:13:48 CDT 2018


Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
---
 dlls/opcservices/package.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/opcservices/package.c b/dlls/opcservices/package.c
index eb9c1c9f5a..f3503945b5 100644
--- a/dlls/opcservices/package.c
+++ b/dlls/opcservices/package.c
@@ -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;
-- 
2.19.0




More information about the wine-devel mailing list