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
2ed32f7a
Kaydet (Commit)
2ed32f7a
authored
May 24, 2014
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cppcheck: Prefer prefix ++/-- operators
Change-Id: I290ccba1487e59ea6f86bfb0382671ca4ed50831
üst
fed8631d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
androidinst.cxx
vcl/android/androidinst.cxx
+1
-1
securityenvironment_nssimpl.cxx
...ecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
+3
-3
No files found.
vcl/android/androidinst.cxx
Dosyayı görüntüle @
2ed32f7a
...
...
@@ -110,7 +110,7 @@ void AndroidSalInstance::RedrawWindows(ANativeWindow_Buffer *pBuffer)
{
int
i
=
0
;
std
::
list
<
SalFrame
*
>::
const_iterator
it
;
for
(
it
=
getFrames
().
begin
();
it
!=
getFrames
().
end
();
i
++
,
it
++
)
for
(
it
=
getFrames
().
begin
();
it
!=
getFrames
().
end
();
i
++
,
++
it
)
{
SvpSalFrame
*
pFrame
=
static_cast
<
SvpSalFrame
*>
(
*
it
);
...
...
xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
Dosyayı görüntüle @
2ed32f7a
...
...
@@ -278,7 +278,7 @@ PK11SymKey* SecurityEnvironment_NssImpl :: getSymKey( unsigned int position ) th
unsigned
int
pos
;
symkey
=
NULL
;
for
(
pos
=
0
,
keyIt
=
m_tSymKeyList
.
begin
()
;
pos
<
position
&&
keyIt
!=
m_tSymKeyList
.
end
()
;
pos
++
,
keyIt
++
)
;
for
(
pos
=
0
,
keyIt
=
m_tSymKeyList
.
begin
()
;
pos
<
position
&&
keyIt
!=
m_tSymKeyList
.
end
()
;
pos
++
,
++
keyIt
)
;
if
(
pos
==
position
&&
keyIt
!=
m_tSymKeyList
.
end
()
)
symkey
=
*
keyIt
;
...
...
@@ -332,7 +332,7 @@ SECKEYPublicKey* SecurityEnvironment_NssImpl :: getPubKey( unsigned int position
unsigned
int
pos
;
pubkey
=
NULL
;
for
(
pos
=
0
,
keyIt
=
m_tPubKeyList
.
begin
()
;
pos
<
position
&&
keyIt
!=
m_tPubKeyList
.
end
()
;
pos
++
,
keyIt
++
)
;
for
(
pos
=
0
,
keyIt
=
m_tPubKeyList
.
begin
()
;
pos
<
position
&&
keyIt
!=
m_tPubKeyList
.
end
()
;
pos
++
,
++
keyIt
)
;
if
(
pos
==
position
&&
keyIt
!=
m_tPubKeyList
.
end
()
)
pubkey
=
*
keyIt
;
...
...
@@ -386,7 +386,7 @@ SECKEYPrivateKey* SecurityEnvironment_NssImpl :: getPriKey( unsigned int positio
unsigned
int
pos
;
prikey
=
NULL
;
for
(
pos
=
0
,
keyIt
=
m_tPriKeyList
.
begin
()
;
pos
<
position
&&
keyIt
!=
m_tPriKeyList
.
end
()
;
pos
++
,
keyIt
++
)
;
for
(
pos
=
0
,
keyIt
=
m_tPriKeyList
.
begin
()
;
pos
<
position
&&
keyIt
!=
m_tPriKeyList
.
end
()
;
pos
++
,
++
keyIt
)
;
if
(
pos
==
position
&&
keyIt
!=
m_tPriKeyList
.
end
()
)
prikey
=
*
keyIt
;
...
...
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