Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ylmbtm committed Jul 2, 2021
1 parent 6e9c2be commit d2d00ec
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 118 deletions.
4 changes: 4 additions & 0 deletions Server/Src/ServerEngine/CommonConvert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ BOOL CommonConvert::SpliteString(std::string strSrc, std::string strDelim, std::
return TRUE;
}

if (strSrc.size() <= 0)
{
return TRUE;
}
std::string::iterator subStart, subEnd;
subStart = strSrc.begin();
while (true)
Expand Down
Loading

0 comments on commit d2d00ec

Please sign in to comment.