From 90a4a68eb58115266d2ae69f96b5f3b120e67922 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Wed, 18 Jun 2025 22:45:28 +0400 Subject: [PATCH] added sanitize_utf8 to invoke() in plain_wallet --- src/wallet/plain_wallet_api.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/plain_wallet_api.cpp b/src/wallet/plain_wallet_api.cpp index d242c760..943cd133 100644 --- a/src/wallet/plain_wallet_api.cpp +++ b/src/wallet/plain_wallet_api.cpp @@ -605,6 +605,7 @@ namespace plain_wallet PLAIN_WALLET_BEGIN_TRY_ENTRY(); GET_INSTANCE_PTR(inst_ptr); return inst_ptr->gwm.invoke(h, params); + tools::sanitize_utf8(params); PLAIN_WALLET_CATCH(); }