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
71b87e38
Kaydet (Commit)
71b87e38
authored
Şub 02, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1242531 Untrusted value as argument
Change-Id: I86e872251f7b8b0818a91c4a133f363e76be5f34
üst
cbe24d89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
poly.cxx
tools/source/generic/poly.cxx
+8
-6
No files found.
tools/source/generic/poly.cxx
Dosyayı görüntüle @
71b87e38
...
...
@@ -1540,6 +1540,14 @@ SvStream& ReadPolygon( SvStream& rIStream, Polygon& rPoly )
// read all points and create array
rIStream
.
ReadUInt16
(
nPoints
);
const
size_t
nMaxRecordsPossible
=
rIStream
.
remainingSize
()
/
(
2
*
sizeof
(
sal_Int32
));
if
(
nPoints
>
nMaxRecordsPossible
)
{
SAL_WARN
(
"tools"
,
"Polygon claims "
<<
nPoints
<<
" records, but only "
<<
nMaxRecordsPossible
<<
" possible"
);
nPoints
=
nMaxRecordsPossible
;
}
if
(
rPoly
.
mpImplPolygon
->
mnRefCount
!=
1
)
{
if
(
rPoly
.
mpImplPolygon
->
mnRefCount
)
...
...
@@ -1551,12 +1559,6 @@ SvStream& ReadPolygon( SvStream& rIStream, Polygon& rPoly )
{
// Determine whether we need to write through operators
const
size_t
nMaxRecordsPossible
=
rIStream
.
remainingSize
()
/
(
2
*
sizeof
(
sal_Int32
));
if
(
nPoints
>
nMaxRecordsPossible
)
{
SAL_WARN
(
"tools"
,
"Polygon claims "
<<
nPoints
<<
" records, but only "
<<
nMaxRecordsPossible
<<
" possible"
);
nPoints
=
nMaxRecordsPossible
;
}
#if (SAL_TYPES_SIZEOFLONG) == 4
#ifdef OSL_BIGENDIAN
if
(
rIStream
.
GetEndian
()
==
SvStreamEndian
::
BIG
)
...
...
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