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
2934b737
Kaydet (Commit)
2934b737
authored
Şub 01, 2017
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ofz#506 check len before alloc
Change-Id: Ia3a30936fadde10275a964d09150a3b6e4f3e16f
üst
55916dfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ipict.cxx
filter/source/graphicfilter/ipict/ipict.cxx
+3
-3
No files found.
filter/source/graphicfilter/ipict/ipict.cxx
Dosyayı görüntüle @
2934b737
...
@@ -1080,13 +1080,13 @@ sal_uLong PictReader::ReadPixMapEtc( Bitmap &rBitmap, bool bBaseAddr, bool bColo
...
@@ -1080,13 +1080,13 @@ sal_uLong PictReader::ReadPixMapEtc( Bitmap &rBitmap, bool bBaseAddr, bool bColo
sal_uInt8
nFlagCounterByte
;
sal_uInt8
nFlagCounterByte
;
if
(
(
nCmpCount
==
3
)
||
(
nCmpCount
==
4
)
)
if
(
(
nCmpCount
==
3
)
||
(
nCmpCount
==
4
)
)
{
{
if
(
(
pAcc
=
initBitmap
(
aBitmap
,
aPalette
)
)
==
nullptr
)
return
0xffffffff
;
size_t
nByteCountSize
=
nRowBytes
>
250
?
sizeof
(
sal_uInt16
)
:
sizeof
(
sal_uInt8
);
size_t
nByteCountSize
=
nRowBytes
>
250
?
sizeof
(
sal_uInt16
)
:
sizeof
(
sal_uInt8
);
if
(
nHeight
>
pPict
->
remainingSize
()
/
nByteCountSize
)
if
(
nHeight
>
pPict
->
remainingSize
()
/
nByteCountSize
)
return
0xffffffff
;
return
0xffffffff
;
if
(
(
pAcc
=
initBitmap
(
aBitmap
,
aPalette
)
)
==
nullptr
)
return
0xffffffff
;
std
::
unique_ptr
<
sal_uInt8
[]
>
pScanline
(
new
sal_uInt8
[
static_cast
<
size_t
>
(
nWidth
)
*
nCmpCount
]);
std
::
unique_ptr
<
sal_uInt8
[]
>
pScanline
(
new
sal_uInt8
[
static_cast
<
size_t
>
(
nWidth
)
*
nCmpCount
]);
for
(
sal_uInt16
ny
=
0
;
ny
<
nHeight
;
++
ny
)
for
(
sal_uInt16
ny
=
0
;
ny
<
nHeight
;
++
ny
)
{
{
...
...
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