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
165c9398
Kaydet (Commit)
165c9398
authored
Tem 27, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast
Change-Id: I21fd75b3c891d98f6ad1e4c8af985c2cd21c7db4
üst
58cb1423
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
8 deletions
+5
-8
SerfGetReqProcImpl.cxx
ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
+1
-1
SerfPostReqProcImpl.cxx
ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
+1
-1
SerfSession.cxx
ucb/source/ucp/webdav/SerfSession.cxx
+2
-4
webdavservices.cxx
ucb/source/ucp/webdav/webdavservices.cxx
+1
-2
No files found.
ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
Dosyayı görüntüle @
165c9398
...
...
@@ -102,7 +102,7 @@ void SerfGetReqProcImpl::processChunkOfResponseData( const char* data,
}
else
if
(
xOutputStream
.
is
()
)
{
const
uno
::
Sequence
<
sal_Int8
>
aDataSeq
(
(
sal_Int8
*
)
data
,
len
);
const
uno
::
Sequence
<
sal_Int8
>
aDataSeq
(
reinterpret_cast
<
const
sal_Int8
*>
(
data
)
,
len
);
xOutputStream
->
writeBytes
(
aDataSeq
);
}
}
...
...
ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
Dosyayı görüntüle @
165c9398
...
...
@@ -111,7 +111,7 @@ void SerfPostReqProcImpl::processChunkOfResponseData( const char* data,
}
else
if
(
xOutputStream
.
is
()
)
{
const
uno
::
Sequence
<
sal_Int8
>
aDataSeq
(
(
sal_Int8
*
)
data
,
len
);
const
uno
::
Sequence
<
sal_Int8
>
aDataSeq
(
reinterpret_cast
<
const
sal_Int8
*>
(
data
)
,
len
);
xOutputStream
->
writeBytes
(
aDataSeq
);
}
}
...
...
ucb/source/ucp/webdav/SerfSession.cxx
Dosyayı görüntüle @
165c9398
...
...
@@ -462,7 +462,7 @@ apr_status_t SerfSession::verifySerfCertificateChain (
{
uno
::
Reference
<
security
::
XCertificateExtension
>
element
=
extensions
[
i
];
const
rtl
::
OString
aId
(
(
const
sal_Char
*
)
element
->
getExtensionId
().
getArray
(
),
element
->
getExtensionId
().
getLength
());
const
rtl
::
OString
aId
(
reinterpret_cast
<
const
sal_Char
*>
(
const_cast
<
const
signed
char
*>
(
element
->
getExtensionId
().
getArray
())
),
element
->
getExtensionId
().
getLength
());
if
(
aId
.
equals
(
OID_SUBJECT_ALTERNATIVE_NAME
)
)
{
uno
::
Reference
<
security
::
XSanExtension
>
sanExtension
(
element
,
uno
::
UNO_QUERY
);
...
...
@@ -1423,9 +1423,7 @@ SerfSession::getDataFromInputStream(
rData
.
realloc
(
nPos
+
nRead
);
aBuffer
.
realloc
(
nRead
);
memcpy
(
(
void
*
)(
rData
.
getArray
()
+
nPos
),
(
const
void
*
)
aBuffer
.
getConstArray
(),
nRead
);
memcpy
(
rData
.
getArray
()
+
nPos
,
aBuffer
.
getConstArray
(),
nRead
);
nPos
+=
nRead
;
aBuffer
.
realloc
(
0
);
...
...
ucb/source/ucp/webdav/webdavservices.cxx
Dosyayı görüntüle @
165c9398
...
...
@@ -31,8 +31,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL ucpdav1_component_getFactory(
void
*
pRet
=
0
;
uno
::
Reference
<
lang
::
XMultiServiceFactory
>
xSMgr
(
reinterpret_cast
<
lang
::
XMultiServiceFactory
*
>
(
pServiceManager
)
);
static_cast
<
lang
::
XMultiServiceFactory
*
>
(
pServiceManager
)
);
uno
::
Reference
<
lang
::
XSingleServiceFactory
>
xFactory
;
...
...
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