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
0ef18e35
Kaydet (Commit)
0ef18e35
authored
May 11, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: I07d9567da23094836134a54afce660500bf1b3f5
üst
10fe9ed2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
keyimpl.cxx
registry/source/keyimpl.cxx
+5
-5
regimpl.cxx
registry/source/regimpl.cxx
+3
-3
No files found.
registry/source/keyimpl.cxx
Dosyayı görüntüle @
0ef18e35
...
...
@@ -259,7 +259,7 @@ RegError ORegKey::getValueInfo(const OUString& valueName, RegValueType* pValueTy
}
sal_uInt32
size
;
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
readUINT32
(
pBuffer
+
VALUE_TYPEOFFSET
,
size
);
*
pValueType
=
(
RegValueType
)
type
;
...
...
@@ -595,7 +595,7 @@ RegError ORegKey::getValue(const OUString& valueName, RegValue value) const
return
RegError
::
INVALID_VALUE
;
}
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
readUINT32
(
pBuffer
+
VALUE_TYPEOFFSET
,
valueSize
);
...
...
@@ -695,7 +695,7 @@ RegError ORegKey::getLongListValue(const OUString& valueName, sal_Int32** pValue
return
RegError
::
INVALID_VALUE
;
}
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
if
(
valueType
!=
RegValueType
::
LONGLIST
)
...
...
@@ -809,7 +809,7 @@ RegError ORegKey::getStringListValue(const OUString& valueName, sal_Char*** pVal
return
RegError
::
INVALID_VALUE
;
}
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
if
(
valueType
!=
RegValueType
::
STRINGLIST
)
...
...
@@ -915,7 +915,7 @@ RegError ORegKey::getUnicodeListValue(const OUString& valueName, sal_Unicode***
return
RegError
::
INVALID_VALUE
;
}
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
if
(
valueType
!=
RegValueType
::
UNICODELIST
)
...
...
registry/source/regimpl.cxx
Dosyayı görüntüle @
0ef18e35
...
...
@@ -1055,7 +1055,7 @@ RegError ORegistry::loadAndSaveValue(ORegKey* pTargetKey,
}
RegError
_ret
=
RegError
::
NO_ERROR
;
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
readUINT32
(
pBuffer
+
VALUE_TYPEOFFSET
,
valueSize
);
rtl_freeMemory
(
pBuffer
);
...
...
@@ -1148,7 +1148,7 @@ RegError ORegistry::checkBlop(OStoreStream& rValue,
if
(
!
rValue
.
readAt
(
0
,
pBuffer
,
VALUE_HEADERSIZE
,
rwBytes
)
&&
(
rwBytes
==
VALUE_HEADERSIZE
))
{
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
readUINT32
(
pBuffer
+
VALUE_TYPEOFFSET
,
valueSize
);
rtl_freeMemory
(
pBuffer
);
...
...
@@ -1490,7 +1490,7 @@ RegError ORegistry::dumpValue(const OUString& sPath, const OUString& sName, sal_
return
RegError
::
INVALID_VALUE
;
}
sal_uInt8
type
=
*
((
sal_uInt8
*
)
pBuffer
)
;
sal_uInt8
type
=
*
pBuffer
;
valueType
=
(
RegValueType
)
type
;
readUINT32
(
pBuffer
+
VALUE_TYPEOFFSET
,
valueSize
);
...
...
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