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
07ec99d3
Kaydet (Commit)
07ec99d3
authored
Kas 17, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1242628 Untrusted loop bound
Change-Id: Ifabdfab76279e4417642ce10cb86a43184b94629
üst
5aa174b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
xihelper.cxx
sc/source/filter/excel/xihelper.cxx
+10
-0
No files found.
sc/source/filter/excel/xihelper.cxx
Dosyayı görüntüle @
07ec99d3
...
...
@@ -838,6 +838,16 @@ XclImpCachedMatrix::XclImpCachedMatrix( XclImpStream& rStrm ) :
++
mnScRows
;
}
//assuming worse case scenario of unknown types
const
size_t
nMinRecordSize
=
1
;
const
size_t
nMaxRows
=
rStrm
.
GetRecLeft
()
/
(
nMinRecordSize
*
mnScCols
);
if
(
mnScRows
>
nMaxRows
)
{
SAL_WARN
(
"sc"
,
"Parsing error: "
<<
nMaxRows
<<
" max possible rows, but "
<<
mnScRows
<<
" claimed, truncating"
);
mnScRows
=
nMaxRows
;
}
for
(
SCSIZE
nScRow
=
0
;
nScRow
<
mnScRows
;
++
nScRow
)
for
(
SCSIZE
nScCol
=
0
;
nScCol
<
mnScCols
;
++
nScCol
)
maValueList
.
push_back
(
new
XclImpCachedValue
(
rStrm
)
);
...
...
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