diff options
Diffstat (limited to 'mp/src/tier1/splitstring.cpp')
| -rw-r--r-- | mp/src/tier1/splitstring.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mp/src/tier1/splitstring.cpp b/mp/src/tier1/splitstring.cpp index 461aa61d..448f6d03 100644 --- a/mp/src/tier1/splitstring.cpp +++ b/mp/src/tier1/splitstring.cpp @@ -70,7 +70,8 @@ void CSplitString::Construct( const char *pString, const char **pSeparators, int else { // Copy the rest of the string - if ( int nTokenLength = strlen( pCurPos ) ) + int nTokenLength = strlen( pCurPos ); + if ( nTokenLength ) { ////////////////////////////////////////////////////////////////////////// // There's no need to cut this token, because there's no separator after it. |