http: qpack_encode_method fix 20/43820/2
authorMatus Fabian <[email protected]>
Wed, 1 Oct 2025 16:13:26 +0000 (12:13 -0400)
committerFlorin Coras <[email protected]>
Thu, 2 Oct 2025 15:48:28 +0000 (15:48 +0000)
missing break found by coverity

Type:fix

Change-Id: Ib63d9466c9282eebd0270a2cf0fb0dfe0fef6ae9
Signed-off-by: Matus Fabian <[email protected]>
src/plugins/http/http3/qpack.c

index bb14a6b..afaa7f0 100644 (file)
@@ -1214,6 +1214,7 @@ qpack_encode_method (u8 *dst, http_req_method_t method)
       break;
     case HTTP_REQ_PUT:
       encode_static_entry (21);
+      break;
     default:
       ASSERT (0);
       break;