Browse Source

fix a spurious fallthrough

Julius Pfrommer 8 years ago
parent
commit
9bd6690dee
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/server/ua_server_binary.c

+ 1 - 0
src/server/ua_server_binary.c

@@ -51,6 +51,7 @@ static UA_ByteString processChunk(UA_SecureChannel *channel, UA_Server *server,
     case UA_CHUNKTYPE_ABORT:
         UA_LOG_INFO(server->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "Chunk aborted");
         UA_SecureChannel_removeChunk(channel, requestId);
+        break;
     default:
         UA_LOG_INFO(server->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "Unknown chunk type");
     }