Kaydet (Commit) 69918076 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud Kaydeden (comit) Eike Rathke

coverity#707543 : Unitialized scalar variable

Change-Id: I601b8cd42932fcba9b98a5736faa9d38525b093a
Reviewed-on: https://gerrit.libreoffice.org/4406Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
Tested-by: 's avatarEike Rathke <erack@redhat.com>
üst 0139e0b1
......@@ -1505,6 +1505,11 @@ RMItemData SVTXRoadmap::GetRMItemData( const ::com::sun::star::container::Contai
aValue = xPropertySet->getPropertyValue(OUString( "Enabled" ));
aValue >>= aCurRMItemData.b_Enabled;
}
else
{
aCurRMItemData.b_Enabled = sal_False;
aCurRMItemData.n_ID = 0;
}
return aCurRMItemData;
}
......
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