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
9bab8d99
Kaydet (Commit)
9bab8d99
authored
Eyl 10, 2013
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i122985# fix compile error in pngreader.cxx for product build with debug enabled
üst
d0ebb70c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
pngread.cxx
vcl/source/gdi/pngread.cxx
+4
-0
No files found.
vcl/source/gdi/pngread.cxx
Dosyayı görüntüle @
9bab8d99
...
@@ -1414,8 +1414,10 @@ void PNGReaderImpl::ImplDrawScanline( sal_uInt32 nXStart, sal_uInt32 nXAdd )
...
@@ -1414,8 +1414,10 @@ void PNGReaderImpl::ImplDrawScanline( sal_uInt32 nXStart, sal_uInt32 nXAdd )
{
{
OSL_ENSURE
(
mpScanline
,
"No Scanline allocated (!)"
);
OSL_ENSURE
(
mpScanline
,
"No Scanline allocated (!)"
);
OSL_ENSURE
(
mpScanlineAlpha
,
"No ScanlineAlpha allocated (!)"
);
OSL_ENSURE
(
mpScanlineAlpha
,
"No ScanlineAlpha allocated (!)"
);
#ifdef DBG_UTIL
OSL_ENSURE
(
mnAllocSizeScanline
>=
maOrigSize
.
Width
()
*
3
,
"Allocated Scanline too small (!)"
);
OSL_ENSURE
(
mnAllocSizeScanline
>=
maOrigSize
.
Width
()
*
3
,
"Allocated Scanline too small (!)"
);
OSL_ENSURE
(
mnAllocSizeScanlineAlpha
>=
maOrigSize
.
Width
(),
"Allocated ScanlineAlpha too small (!)"
);
OSL_ENSURE
(
mnAllocSizeScanlineAlpha
>=
maOrigSize
.
Width
(),
"Allocated ScanlineAlpha too small (!)"
);
#endif
sal_uInt8
*
pScanline
(
mpScanline
);
sal_uInt8
*
pScanline
(
mpScanline
);
sal_uInt8
*
pScanlineAlpha
(
mpScanlineAlpha
);
sal_uInt8
*
pScanlineAlpha
(
mpScanlineAlpha
);
...
@@ -1549,7 +1551,9 @@ void PNGReaderImpl::ImplDrawScanline( sal_uInt32 nXStart, sal_uInt32 nXAdd )
...
@@ -1549,7 +1551,9 @@ void PNGReaderImpl::ImplDrawScanline( sal_uInt32 nXStart, sal_uInt32 nXAdd )
if
(
bDoDirectScanline
)
if
(
bDoDirectScanline
)
{
{
OSL_ENSURE
(
mpScanline
,
"No Scanline allocated (!)"
);
OSL_ENSURE
(
mpScanline
,
"No Scanline allocated (!)"
);
#ifdef DBG_UTIL
OSL_ENSURE
(
mnAllocSizeScanline
>=
maOrigSize
.
Width
()
*
3
,
"Allocated Scanline too small (!)"
);
OSL_ENSURE
(
mnAllocSizeScanline
>=
maOrigSize
.
Width
()
*
3
,
"Allocated Scanline too small (!)"
);
#endif
sal_uInt8
*
pScanline
(
mpScanline
);
sal_uInt8
*
pScanline
(
mpScanline
);
for
(
sal_uInt32
nX
(
0
);
nX
<
maOrigSize
.
Width
();
nX
++
,
pTmp
+=
3
)
for
(
sal_uInt32
nX
(
0
);
nX
<
maOrigSize
.
Width
();
nX
++
,
pTmp
+=
3
)
...
...
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