Kaydet (Commit) 9c4eaa7b authored tarafından Muhammet Kara's avatar Muhammet Kara

cppcheck: variableScope & unreadVariable

Change-Id: Iaa3adc54d547e243b977a562fa4dbc2b9b9c6592
Reviewed-on: https://gerrit.libreoffice.org/52905Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMuhammet Kara <muhammet.kara@pardus.org.tr>
üst d246aa57
......@@ -2841,7 +2841,6 @@ static char* getStyles(LibreOfficeKitDocument* pThis, const char* pCommand)
// Header & Footer Styles
{
OUString sName;
bool bIsPhysical;
boost::property_tree::ptree aChild;
boost::property_tree::ptree aChildren;
const OUString sPageStyles("PageStyles");
......@@ -2853,6 +2852,7 @@ static char* getStyles(LibreOfficeKitDocument* pThis, const char* pCommand)
uno::Sequence<OUString> aSeqNames = xContainer->getElementNames();
for (sal_Int32 itName = 0; itName < aSeqNames.getLength(); itName++)
{
bool bIsPhysical;
sName = aSeqNames[itName];
xProperty.set(xContainer->getByName(sName), uno::UNO_QUERY);
if (xProperty.is() && (xProperty->getPropertyValue("IsPhysical") >>= bIsPhysical) && bIsPhysical)
......@@ -2861,8 +2861,6 @@ static char* getStyles(LibreOfficeKitDocument* pThis, const char* pCommand)
aChild.put("", sName.toUtf8());
aChildren.push_back(std::make_pair("", aChild));
}
else
bIsPhysical = false;
}
aValues.add_child("HeaderFooter", aChildren);
}
......
......@@ -96,12 +96,13 @@ bool RASReader::ReadRAS(Graphic & rGraphic)
if ( !mbStatus )
return false;
bool bPalette(false);
std::vector<Color> aPalette;
bool bOk = true;
if ( mnDstBitsPerPix <= 8 ) // pallets pictures
{
bool bPalette(false);
if ( mnColorMapType == RAS_COLOR_RAW_MAP ) // RAW color map is skipped
{
sal_uLong nCurPos = m_rRAS.Tell();
......@@ -144,7 +145,6 @@ bool RASReader::ReadRAS(Graphic & rGraphic)
sal_uLong nCount = 255 - ( 255 * i / ( mnDstColors - 1 ) );
aPalette[i] = Color(static_cast<sal_uInt8>(nCount), static_cast<sal_uInt8>(nCount), static_cast<sal_uInt8>(nCount));
}
bPalette = true;
}
}
else
......
......@@ -234,12 +234,12 @@ static void readPool (
rtlRandomPool SAL_CALL rtl_random_createPool() SAL_THROW_EXTERN_C()
{
RandomPool_Impl *pImpl = nullptr;
char sanity[4];
/* try to get system random number, if it fail fall back on own pool */
pImpl = static_cast< RandomPool_Impl* >(rtl_allocateZeroMemory(sizeof(RandomPool_Impl)));
if (pImpl)
{
char sanity[4];
if (!osl_get_system_random_data(sanity, 4))
{
if (!initPool(pImpl))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment