Fix trailing zeros in CPU brand

This commit is contained in:
Nekotekina 2018-09-16 12:46:40 +03:00
parent 0d4f0f95cc
commit 9de31fc5ce
1 changed files with 2 additions and 1 deletions

View File

@ -73,8 +73,9 @@ std::string utils::get_system_info()
brand = "Unknown CPU";
}
brand.erase(0, brand.find_first_not_of(' '));
brand.erase(brand.find_last_not_of('\0') + 1);
brand.erase(brand.find_last_not_of(' ') + 1);
brand.erase(0, brand.find_first_not_of(' '));
while (auto found = brand.find(" ") + 1)
{