From bb439b010729ab5fe646f9c9bc5042375258c8bd Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 10 Jul 2024 13:52:36 +0200 Subject: [PATCH] fixed a bug in transform_t_pod_array_to_hex_str_array() --- contrib/epee/include/serialization/keyvalue_helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/epee/include/serialization/keyvalue_helpers.h b/contrib/epee/include/serialization/keyvalue_helpers.h index 9b5f0dcf..d76fc641 100644 --- a/contrib/epee/include/serialization/keyvalue_helpers.h +++ b/contrib/epee/include/serialization/keyvalue_helpers.h @@ -105,7 +105,7 @@ namespace epee std::string res; for (const auto& item : a) { - res += epee::string_tools::pod_to_hex(a) + ", "; + res += epee::string_tools::pod_to_hex(item) + ", "; } if (a.size()) {