From 656f4ea58982e5ad42ea3680b6e71ab9484b9671 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Thu, 31 Oct 2024 11:58:48 -0400 Subject: [PATCH] Fix CUDA path copy paste error --- include/boost/crypt/hash/detail/sha3_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/crypt/hash/detail/sha3_base.hpp b/include/boost/crypt/hash/detail/sha3_base.hpp index cd91dc7..eceeb3e 100644 --- a/include/boost/crypt/hash/detail/sha3_base.hpp +++ b/include/boost/crypt/hash/detail/sha3_base.hpp @@ -423,7 +423,7 @@ BOOST_CRYPT_GPU_ENABLED constexpr auto sha3_base::get_diges #else - if (!utility::is_null(buffer)) + if (!utility::is_null(return_buffer)) { auto* data {reinterpret_cast(return_buffer)}; return xof_digest_impl(data, len);