From d881c9faf69145fc594ce20ac997f8d74c90b5ed Mon Sep 17 00:00:00 2001 From: Anonymous275 <36374260+Anonymous-275@users.noreply.github.com> Date: Mon, 5 Sep 2022 02:59:05 +0300 Subject: [PATCH] release 2.0.75 --- src/Security/Login.cpp | 2 +- src/Startup.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Security/Login.cpp b/src/Security/Login.cpp index ce286b1..5a58df2 100755 --- a/src/Security/Login.cpp +++ b/src/Security/Login.cpp @@ -90,7 +90,7 @@ void CheckLocalKey(){ for (char& c : Buffer) { if (!std::isalnum(c) && c != '-') { - UpdateKey(""); + UpdateKey(nullptr); return; } } diff --git a/src/Startup.cpp b/src/Startup.cpp index 5ca3dc5..97c6c33 100755 --- a/src/Startup.cpp +++ b/src/Startup.cpp @@ -29,7 +29,7 @@ std::string GetVer(){ return "2.0"; } std::string GetPatch(){ - return ".74"; + return ".75"; } std::string GetEP(char*P){ static std::string Ret = [&](){