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
3dade546
Kaydet (Commit)
3dade546
authored
Ock 17, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some more loplugin:cstylecast: registry
Change-Id: I5cfb42729b5d3d97076058edb108965f248f86af
üst
7b832986
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
reflcnst.hxx
registry/source/reflcnst.hxx
+1
-1
reflread.cxx
registry/source/reflread.cxx
+1
-1
No files found.
registry/source/reflcnst.hxx
Dosyayı görüntüle @
3dade546
...
...
@@ -217,7 +217,7 @@ inline sal_uInt32 writeUtf8(sal_uInt8* buffer, const sal_Char* v)
inline
sal_uInt32
readUtf8
(
const
sal_uInt8
*
buffer
,
sal_Char
*
v
,
sal_uInt32
maxSize
)
{
sal_uInt32
size
=
strlen
(
(
const
sal_Char
*
)
buffer
)
+
1
;
sal_uInt32
size
=
strlen
(
reinterpret_cast
<
const
char
*>
(
buffer
)
)
+
1
;
if
(
size
>
maxSize
)
{
size
=
maxSize
;
...
...
registry/source/reflread.cxx
Dosyayı görüntüle @
3dade546
...
...
@@ -366,7 +366,7 @@ const sal_Char* ConstantPool::readUTF8NameConstant(sal_uInt16 index)
if
(
n
<
m_bufferLen
&&
std
::
memchr
(
m_pBuffer
+
n
,
0
,
m_bufferLen
-
n
)
!=
nullptr
)
{
aName
=
(
const
sal_Char
*
)
(
m_pBuffer
+
n
);
aName
=
reinterpret_cast
<
const
char
*>
(
m_pBuffer
+
n
);
}
}
}
...
...
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