Fixed parse_string function in write_multiblock.cc

This commit is contained in:
Takeshi Nakatani 2021-10-24 13:57:02 +00:00 committed by Andrew Gaul
parent 34ea2acd75
commit 23fe6f4dee

View File

@ -105,19 +105,17 @@ static bool parse_string(const char* pstr, char delim, strlist_t& strlist)
if(!pstr){ if(!pstr){
return false; return false;
} }
char* ptmp = strdup(pstr); std::string strAll(pstr);
char* pbup = ptmp; while(!strAll.empty()){
for(char* pfound = strchr(ptmp, delim); pfound; pfound = strchr(ptmp, delim)){ size_t pos = strAll.find_first_of(delim);
*pfound = '\0'; if(std::string::npos != pos){
if(0 < strlen(ptmp)){ strlist.push_back(strAll.substr(0, pos));
strlist.push_back(std::string(ptmp)); strAll = strAll.substr(pos + 1);
}else{
strlist.push_back(strAll);
strAll.erase();
} }
ptmp = ++pfound;
} }
if(0 < strlen(ptmp)){
strlist.push_back(std::string(ptmp));
}
free(pbup);
return true; return true;
} }