diff options
author | Kevin Hunter <hunteke@earlham.edu> | 2011-02-11 13:44:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-02-11 13:44:07 +0000 |
commit | bf03aa3bf4315c618ae13ddbaef30baea2430cc5 (patch) | |
tree | 88a801fe83976060c48ce22c31611ef79ab84248 /crashrep | |
parent | d63540aebd7654bf70d4a250406d983560fbb45a (diff) |
cppcheck: post- to pre- *crement change
Diffstat (limited to 'crashrep')
-rw-r--r-- | crashrep/source/win32/soreport.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crashrep/source/win32/soreport.cpp b/crashrep/source/win32/soreport.cpp index 4e8db7c20afd..6d00a3098fd5 100644 --- a/crashrep/source/win32/soreport.cpp +++ b/crashrep/source/win32/soreport.cpp @@ -1833,9 +1833,7 @@ bool WriteChecksumFile( FILE *fchksum, const boost::unordered_map< string, strin boost::unordered_map< string, string >::const_iterator iter; - for ( iter = rLibraries.begin(); - iter != rLibraries.end(); - iter++ ) + for ( iter = rLibraries.begin(); iter != rLibraries.end(); ++iter ) { sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; sal_uInt32 nBytesProcessed = calc_md5_checksum( |