From fa731c1129f10a21b57671ec64c01ef40225d347 Mon Sep 17 00:00:00 2001 From: Eelco Chaudron Date: Thu, 12 Sep 2024 15:45:41 +0200 Subject: [PATCH] oss-fuzz: Fix odp_flow_format() API in the fuzz tests. When the commit below introduced an API change, the oss-fuzz component was not updated accordingly, leading to failures in the upstream oss-fuzz tests. For more information on the failure, see: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=71524 Fixes: 252ee0f18211 ("dpif: Fix flow put debug message match content.") Acked-by: Ilya Maximets Signed-off-by: Eelco Chaudron --- tests/oss-fuzz/odp_target.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/oss-fuzz/odp_target.c b/tests/oss-fuzz/odp_target.c index ae61cdca3..0d615f8a2 100644 --- a/tests/oss-fuzz/odp_target.c +++ b/tests/oss-fuzz/odp_target.c @@ -81,7 +81,8 @@ parse_keys(bool wc_keys, const char *in) ds_init(&out); if (wc_keys) { odp_flow_format(odp_key.data, odp_key.size, - odp_mask.data, odp_mask.size, NULL, &out, false); + odp_mask.data, odp_mask.size, NULL, &out, false, + false); } else { odp_flow_key_format(odp_key.data, odp_key.size, &out); }