From b5923696cd8cbb2984cf76a5e193dfca83c52b99 Mon Sep 17 00:00:00 2001 From: otavepto Date: Sat, 23 Dec 2023 17:02:06 +0200 Subject: [PATCH] wrong buffer! --- dll/auth.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/auth.h b/dll/auth.h index 1db3209d..6d343d93 100644 --- a/dll/auth.h +++ b/dll/auth.h @@ -616,7 +616,7 @@ struct Auth_Data { //Todo make a signature std::vector signature = sign_auth_data(app_ticket_key, tickedData, total_size_without_siglen); if (signature.size() == STEAM_APPTICKET_SIGLEN) { - memcpy(tickedData.data() + total_size_without_siglen, signature.data(), signature.size()); + memcpy(buffer.data() + total_size_without_siglen, signature.data(), signature.size()); #ifndef EMU_RELEASE_BUILD {