diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-07-31 16:32:16 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-07-31 16:32:16 +0000 |
commit | 4d0ea8d38711705820738d0982b7d1a384c4ccc3 (patch) | |
tree | 8c7a28b084e3ed4051bbeb21ff347c72d4f782db | |
parent | a554c49674d5bfb858a71c92cd40da1732a6143d (diff) |
INTEGRATION: CWS impress121 (1.147.106); FILE MERGED
2007/07/18 19:39:36 sj 1.147.106.3: RESYNC: (1.149-1.150); FILE MERGED
2007/06/05 14:45:57 sj 1.147.106.2: RESYNC: (1.147-1.149); FILE MERGED
2007/05/24 13:33:45 sj 1.147.106.1: #i76132# fixed uninitialized value (valgrind)
-rw-r--r-- | svx/source/msfilter/msdffimp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/msfilter/msdffimp.cxx b/svx/source/msfilter/msdffimp.cxx index 1963763f89e5..fbab27b0ef1f 100644 --- a/svx/source/msfilter/msdffimp.cxx +++ b/svx/source/msfilter/msdffimp.cxx @@ -4,9 +4,9 @@ * * $RCSfile: msdffimp.cxx,v $ * - * $Revision: 1.151 $ + * $Revision: 1.152 $ * - * last change: $Author: rt $ $Date: 2007-07-06 07:38:49 $ + * last change: $Author: hr $ $Date: 2007-07-31 17:32:16 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -6968,7 +6968,7 @@ BOOL SvxMSDffManager::GetBLIPDirect( SvStream& rBLIPStream, Graphic& rData, Rect // nachschauen, ob es sich auch wirklich um ein BLIP handelt UINT32 nLength; - USHORT nInst, nFbt; + USHORT nInst, nFbt( 0 ); BYTE nVer; if( ReadCommonRecordHeader( rBLIPStream, nVer, nInst, nFbt, nLength) && ( 0xF018 <= nFbt ) && ( 0xF117 >= nFbt ) ) { |