mirror of https://github.com/BOINC/boinc.git
lib: Remove already true condition
This commit is contained in:
parent
dd877c78e8
commit
edac89740f
|
@ -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( ";" );
|
||||
|
|
Loading…
Reference in New Issue