[Libreoffice-commits] .: crashrep/source
Caolán McNamara
caolan at kemper.freedesktop.org
Fri Feb 11 05:44:28 PST 2011
crashrep/source/win32/soreport.cpp | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
New commits:
commit 52205f3d026ab5517fd76ed1740f7f1c0ee28958
Author: Kevin Hunter <hunteke at earlham.edu>
Date: Fri Feb 11 13:44:07 2011 +0000
cppcheck: post- to pre- *crement change
diff --git a/crashrep/source/win32/soreport.cpp b/crashrep/source/win32/soreport.cpp
index 29b8748..16f4356 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(
More information about the Libreoffice-commits
mailing list