Changeset 6276
- Timestamp:
- 06/13/08 02:42:18 (6 months ago)
- Files:
-
- 1 modified
-
trunk/licq/src/file.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/src/file.cpp
r6245 r6276 642 642 // Backtrack until we find a non-space character, then move forward to the 643 643 // next time, thus putting the end of section where it belongs 644 while (isspace(m_szBuffer[--nTempPos])); 645 while (m_szBuffer[++nTempPos] != '\n'); 644 while (isspace(m_szBuffer[--nTempPos])) 645 ; 646 while (m_szBuffer[++nTempPos] != '\n') 647 ; 646 648 647 649 m_nSectionEnd = nTempPos + 1;
