diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2004-09-08 14:05:22 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2004-09-08 14:05:22 +0000 |
commit | 9d83ab6a424148ba4023e2d60ef4540c611398e4 (patch) | |
tree | 7084b9ee4d0add242ad5dafcd7f09031e87f69be /vcl/source/gdi/bitmap4.cxx | |
parent | e95c2d010c7411a102b4b8b4d25dec5858ac2da4 (diff) |
INTEGRATION: CWS ooo20040704 (1.5.136); FILE MERGED
2004/07/01 11:25:56 waratah 1.5.136.1: #i30874# Add initial values to potentially uninitialised values
Diffstat (limited to 'vcl/source/gdi/bitmap4.cxx')
-rw-r--r-- | vcl/source/gdi/bitmap4.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/source/gdi/bitmap4.cxx b/vcl/source/gdi/bitmap4.cxx index 30aa3f9d97e9..d996a41eac62 100644 --- a/vcl/source/gdi/bitmap4.cxx +++ b/vcl/source/gdi/bitmap4.cxx @@ -2,9 +2,9 @@ * * $RCSfile: bitmap4.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2004-01-06 13:29:07 $ + * last change: $Author: rt $ $Date: 2004-09-08 15:05:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1015,7 +1015,8 @@ BOOL Bitmap::ImplPopArt( const BmpFilterParam* pFilterParam, const Link* pProgre qsort( pPopArtTable, nEntryCount, sizeof( PopArtEntry ), ImplPopArtCmpFnc ); // get last used entry - ULONG nFirstEntry, nLastEntry; + ULONG nFirstEntry; + ULONG nLastEntry = 0; for( n = 0; n < nEntryCount; n++ ) if( pPopArtTable[ n ].mnCount ) |