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
19310906
Kaydet (Commit)
19310906
authored
Tem 31, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
filter: valgrind uninitialized warning in filter_met_test
Change-Id: Iaa6a6ed0ef1b9ca3b3f72706ec3934c6c4a93322
üst
72edadf1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ios2met.cxx
filter/source/graphicfilter/ios2met/ios2met.cxx
+2
-2
No files found.
filter/source/graphicfilter/ios2met/ios2met.cxx
Dosyayı görüntüle @
19310906
...
@@ -789,10 +789,10 @@ sal_uLong OS2METReader::ReadLittleEndian3BytesLong()
...
@@ -789,10 +789,10 @@ sal_uLong OS2METReader::ReadLittleEndian3BytesLong()
long
OS2METReader
::
ReadCoord
(
bool
b32
)
long
OS2METReader
::
ReadCoord
(
bool
b32
)
{
{
sal_Int32
l
;
sal_Int32
l
(
0
)
;
if
(
b32
)
pOS2MET
->
ReadInt32
(
l
);
if
(
b32
)
pOS2MET
->
ReadInt32
(
l
);
else
{
short
s
;
pOS2MET
->
ReadInt16
(
s
);
l
=
(
sal_Int32
)
s
;
}
else
{
short
s
(
0
);
pOS2MET
->
ReadInt16
(
s
);
l
=
static_cast
<
sal_Int32
>
(
s
)
;
}
return
l
;
return
l
;
}
}
...
...
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