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
3037f4d9
Kaydet (Commit)
3037f4d9
authored
Mar 19, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#708312 Uninitialized pointer field
Change-Id: I3bb28d1116e155f819b0e920a3c355b00e892c2a
üst
d1a8a119
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
decode.cxx
vcl/source/filter/igif/decode.cxx
+9
-6
No files found.
vcl/source/filter/igif/decode.cxx
Dosyayı görüntüle @
3037f4d9
...
@@ -27,12 +27,15 @@ struct GIFLZWTableEntry
...
@@ -27,12 +27,15 @@ struct GIFLZWTableEntry
sal_uInt8
nData
;
sal_uInt8
nData
;
};
};
GIFLZWDecompressor
::
GIFLZWDecompressor
(
sal_uInt8
cDataSize
)
:
GIFLZWDecompressor
::
GIFLZWDecompressor
(
sal_uInt8
cDataSize
)
nInputBitsBuf
(
0
),
:
pBlockBuf
(
NULL
)
nOutBufDataLen
(
0
),
,
nInputBitsBuf
(
0
)
nInputBitsBufSize
(
0
),
,
nOutBufDataLen
(
0
)
bEOIFound
(
false
),
,
nInputBitsBufSize
(
0
)
nDataSize
(
cDataSize
)
,
bEOIFound
(
false
)
,
nDataSize
(
cDataSize
)
,
nBlockBufSize
(
0
)
,
nBlockBufPos
(
0
)
{
{
pOutBuf
=
new
sal_uInt8
[
4096
];
pOutBuf
=
new
sal_uInt8
[
4096
];
...
...
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