summaryrefslogtreecommitdiff
path: root/src/core/miranda.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/miranda.cpp')
-rw-r--r--src/core/miranda.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/miranda.cpp b/src/core/miranda.cpp
index 1e13d9ad60..0ad716daf9 100644
--- a/src/core/miranda.cpp
+++ b/src/core/miranda.cpp
@@ -402,10 +402,9 @@ static INT_PTR GetMirandaVersionText(WPARAM wParam, LPARAM lParam)
pVerInfo = mir_alloc(verInfoSize);
GetFileVersionInfo(filename, 0, verInfoSize, pVerInfo);
VerQueryValue(pVerInfo, _T("\\StringFileInfo\\000004b0\\ProductVersion"), (LPVOID*)&productVersion, &blockSize);
+ strncpy((char*)lParam, _T2A(productVersion), wParam);
#if defined(_WIN64)
- mir_snprintf((char*)lParam, wParam, "%S x64 Unicode", productVersion);
- #else
- mir_snprintf((char*)lParam, wParam, "%S Unicode", productVersion);
+ strcat_s((char*)lParam, wParam, " x64");
#endif
mir_free(pVerInfo);
return 0;