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
70bf4866
Kaydet (Commit)
70bf4866
authored
Şub 13, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#705539 Unintentional integer overflow
Change-Id: I3d170feeabcdd5f1ac3e64e1018edfb30b2b3c4c
üst
1c71cef7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
ww8par.hxx
sw/source/filter/ww8/ww8par.hxx
+5
-5
ww8par5.cxx
sw/source/filter/ww8/ww8par5.cxx
+1
-1
No files found.
sw/source/filter/ww8/ww8par.hxx
Dosyayı görüntüle @
70bf4866
...
@@ -1243,11 +1243,11 @@ private:
...
@@ -1243,11 +1243,11 @@ private:
OUString
sBaseURL
;
OUString
sBaseURL
;
// Ini-Flags:
// Ini-Flags:
sal_u
Long
nIniFlags
;
// Flags aus der writer.ini
sal_u
Int32
nIniFlags
;
// Flags aus der writer.ini
sal_u
Long
nIniFlags1
;
// dito ( zusaetzliche Flags )
sal_u
Int32
nIniFlags1
;
// dito ( zusaetzliche Flags )
sal_u
Long
nFieldFlags
;
// dito fuer Feldern
sal_u
Int32
nFieldFlags
;
// dito fuer Feldern
sal_u
Long
nFieldTagAlways
[
3
];
// dito fuers Taggen von Feldern
sal_u
Int32
nFieldTagAlways
[
3
];
// dito fuers Taggen von Feldern
sal_u
Long
nFieldTagBad
[
3
];
// dito fuers Taggen von nicht importierbaren F.
sal_u
Int32
nFieldTagBad
[
3
];
// dito fuers Taggen von nicht importierbaren F.
bool
m_bRegardHindiDigits
;
// import digits in CTL scripts as Hindi numbers
bool
m_bRegardHindiDigits
;
// import digits in CTL scripts as Hindi numbers
WW8_CP
nDrawCpO
;
// Anfang der Txbx-SubDocs
WW8_CP
nDrawCpO
;
// Anfang der Txbx-SubDocs
...
...
sw/source/filter/ww8/ww8par5.cxx
Dosyayı görüntüle @
70bf4866
...
@@ -836,7 +836,7 @@ long SwWW8ImplReader::Read_Field(WW8PLCFManResult* pRes)
...
@@ -836,7 +836,7 @@ long SwWW8ImplReader::Read_Field(WW8PLCFManResult* pRes)
sal_uInt16
n
=
(
aF
.
nId
<=
eMax
)
?
aF
.
nId
:
static_cast
<
sal_uInt16
>
(
eMax
);
sal_uInt16
n
=
(
aF
.
nId
<=
eMax
)
?
aF
.
nId
:
static_cast
<
sal_uInt16
>
(
eMax
);
sal_uInt16
nI
=
n
/
32
;
// # des sal_uInt32
sal_uInt16
nI
=
n
/
32
;
// # des sal_uInt32
sal_u
Long
nMask
=
1
<<
(
n
%
32
);
// Maske fuer Bits
sal_u
Int32
nMask
=
1
<<
(
n
%
32
);
// Maske fuer Bits
if
((
sizeof
(
nFieldTagAlways
)
/
sizeof
(
nFieldTagAlways
[
0
]))
<=
nI
)
if
((
sizeof
(
nFieldTagAlways
)
/
sizeof
(
nFieldTagAlways
[
0
]))
<=
nI
)
{
// if indexes larger than 95 are needed, then a new configuration
{
// if indexes larger than 95 are needed, then a new configuration
...
...
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