Mercurial > hg > orthanc
changeset 5987:8bf12186a0cf
added missing breaks
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 22 Jan 2025 11:45:07 +0100 |
parents | 7d1c02901683 |
children | 9ddb530d9da6 |
files | OrthancServer/Plugins/Engine/OrthancPlugins.cpp |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Plugins/Engine/OrthancPlugins.cpp Wed Jan 22 11:44:40 2025 +0100 +++ b/OrthancServer/Plugins/Engine/OrthancPlugins.cpp Wed Jan 22 11:45:07 2025 +0100 @@ -1287,10 +1287,12 @@ case State_MultipartNextParts: assert(output_.IsWritingMultipart()); output_.CloseMultipart(); + break; case State_WritingStream: assert(output_.IsWritingStream()); output_.CloseStream(); + break; default: throw OrthancException(ErrorCode_InternalError);