Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
cefbbd5c
Kaydet (Commit)
cefbbd5c
authored
Eyl 01, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1321600 Dereference before null check
Change-Id: I5a2e61200333ca57af990d3d7be3899da836472a
üst
239c25ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
svdfppt.cxx
filter/source/msfilter/svdfppt.cxx
+4
-8
No files found.
filter/source/msfilter/svdfppt.cxx
Dosyayı görüntüle @
cefbbd5c
...
...
@@ -2559,24 +2559,20 @@ bool SdrPowerPointImport::GetColorFromPalette( sal_uInt16 nNum, Color& rColor )
}
if
(
pMasterPersist
)
{
while( (
pMasterPersist && pMasterPersist->aSlideAtom.nFlags & 2 )
// it is possible that a masterpage
&& pMasterPersist->aSlideAtom.nMasterId )
// itself is following a master colorscheme
while
(
(
pMasterPersist
->
aSlideAtom
.
nFlags
&
2
)
// it is possible that a masterpage
&&
pMasterPersist
->
aSlideAtom
.
nMasterId
)
// itself is following a master colorscheme
{
auto
nOrigMasterId
=
pMasterPersist
->
aSlideAtom
.
nMasterId
;
sal_uInt16
nNextMaster
=
m_pMasterPages
->
FindPage
(
nOrigMasterId
);
if (
nNextMaster == PPTSLIDEPERSIST_ENTRY_NOTFOUND
)
if
(
nNextMaster
==
PPTSLIDEPERSIST_ENTRY_NOTFOUND
)
break
;
else
pMasterPersist = &(*pPageList2)[ nNextMaster ];
pMasterPersist
=
&
(
*
pPageList2
)[
nNextMaster
];
if
(
pMasterPersist
->
aSlideAtom
.
nMasterId
==
nOrigMasterId
)
{
SAL_WARN
(
"filter.ms"
,
"loop in atom chain"
);
break
;
}
}
}
if ( pMasterPersist )
{
const_cast
<
SdrPowerPointImport
*>
(
this
)
->
aPageColors
=
pMasterPersist
->
aColorScheme
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment