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
ec1c09b9
Kaydet (Commit)
ec1c09b9
authored
Haz 09, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: some simple warnings
üst
cb14e2f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
rtl_String_Utils.cxx
sal/qa/OStringBuffer/rtl_String_Utils.cxx
+3
-2
osl_Security.cxx
sal/qa/osl/security/osl_Security.cxx
+4
-2
No files found.
sal/qa/OStringBuffer/rtl_String_Utils.cxx
Dosyayı görüntüle @
ec1c09b9
...
@@ -76,8 +76,9 @@ sal_Char* cpystr( sal_Char* dst, const sal_Char* src )
...
@@ -76,8 +76,9 @@ sal_Char* cpystr( sal_Char* dst, const sal_Char* src )
const
sal_Char
*
psrc
=
src
;
const
sal_Char
*
psrc
=
src
;
sal_Char
*
pdst
=
dst
;
sal_Char
*
pdst
=
dst
;
while
(
(
*
pdst
++
=
*
psrc
++
)
);
while
(
(
*
pdst
++
=
*
psrc
++
)
)
{}
return
(
dst
);
return
dst
;
}
}
sal_Char
*
cpynstr
(
sal_Char
*
dst
,
const
sal_Char
*
src
,
sal_uInt32
cnt
)
sal_Char
*
cpynstr
(
sal_Char
*
dst
,
const
sal_Char
*
src
,
sal_uInt32
cnt
)
...
...
sal/qa/osl/security/osl_Security.cxx
Dosyayı görüntüle @
ec1c09b9
...
@@ -637,7 +637,8 @@ void MyTestPlugInImpl::initialize( CPPUNIT_NS::TestFactoryRegistry *,
...
@@ -637,7 +637,8 @@ void MyTestPlugInImpl::initialize( CPPUNIT_NS::TestFactoryRegistry *,
aLogonPasswd
=
aStringForward
.
copy
(
nFirstSpacePoint
+
1
,
aStringForward
.
getLength
(
)
-
1
);
aLogonPasswd
=
aStringForward
.
copy
(
nFirstSpacePoint
+
1
,
aStringForward
.
getLength
(
)
-
1
);
t_print
(
"#Forwarded password: "
);
t_print
(
"#Forwarded password: "
);
for
(
int
i
=
nFirstSpacePoint
+
1
;
i
<=
aStringForward
.
getLength
(
)
-
1
;
i
++
,
t_print
(
"*"
)
);
for
(
int
i
=
nFirstSpacePoint
+
1
;
i
<=
aStringForward
.
getLength
()
-
1
;
++
i
)
t_print
(
"*"
);
t_print
(
"
\n
"
);
t_print
(
"
\n
"
);
}
}
else
else
...
@@ -649,7 +650,8 @@ void MyTestPlugInImpl::initialize( CPPUNIT_NS::TestFactoryRegistry *,
...
@@ -649,7 +650,8 @@ void MyTestPlugInImpl::initialize( CPPUNIT_NS::TestFactoryRegistry *,
aLogonPasswd
=
aStringForward
.
copy
(
nFirstSpacePoint
+
1
,
nLastSpacePoint
);
aLogonPasswd
=
aStringForward
.
copy
(
nFirstSpacePoint
+
1
,
nLastSpacePoint
);
t_print
(
"#Forwarded password: "
);
t_print
(
"#Forwarded password: "
);
for
(
int
i
=
nFirstSpacePoint
+
1
;
i
<=
nLastSpacePoint
;
i
++
,
t_print
(
"*"
)
);
for
(
int
i
=
nFirstSpacePoint
+
1
;
i
<=
nLastSpacePoint
;
++
i
)
t_print
(
"*"
);
t_print
(
"
\n
"
);
t_print
(
"
\n
"
);
aFileServer
=
aStringForward
.
copy
(
nLastSpacePoint
+
1
,
aStringForward
.
getLength
(
)
-
1
);
aFileServer
=
aStringForward
.
copy
(
nLastSpacePoint
+
1
,
aStringForward
.
getLength
(
)
-
1
);
...
...
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