lib: Remove already true condition

This commit is contained in:
Dmitry Tsarevich 2020-05-06 23:25:50 +03:00
parent dd877c78e8
commit edac89740f
No known key found for this signature in database
GPG Key ID: E3C61298FF5B1274
1 changed files with 1 additions and 1 deletions

View File

@ -569,7 +569,7 @@ int DebuggerInitialize( LPCSTR pszBOINCLocation, LPCSTR pszSymbolStore, BOOL bPr
// Project Symbol Server
if (diagnostics_is_flag_set(BOINC_DIAG_BOINCAPPLICATION) && (0 < strlen(pszSymbolStore))) {
if ((std::string::npos == strSymbolSearchPath.find(pszSymbolStore)) && (0 < strlen(pszSymbolStore))) {
if (std::string::npos == strSymbolSearchPath.find(pszSymbolStore)) {
strSymbolSearchPath +=
std::string( "srv*" ) + strLocalSymbolStore + std::string( "*" ) +
std::string( pszSymbolStore ) + std::string( ";" );