From ce9f97316747bc1ebcd82355d9c84fc1e689ceb3 Mon Sep 17 00:00:00 2001 From: Amrsatrio Date: Thu, 21 Dec 2023 21:53:42 +0700 Subject: [PATCH] Symbols: Fixed languages with longer strings such as French crashing Explorer when attempting to download symbols --- ExplorerPatcher/symbols.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExplorerPatcher/symbols.c b/ExplorerPatcher/symbols.c index a6468f4..89f0956 100644 --- a/ExplorerPatcher/symbols.c +++ b/ExplorerPatcher/symbols.c @@ -339,9 +339,9 @@ DWORD DownloadSymbols(DownloadSymbolsParams* params) ubr ); - wchar_t title[100]; + wchar_t title[160]; wchar_t body[200]; - wchar_t titleFormat[100]; + wchar_t titleFormat[160]; wchar_t buffer[1000]; title[0] = 0; body[0] = 0; titleFormat[0] = 0; buffer[0] = 0;