svtools/source/uno/unoiface.cxx | 5 +++++ 1 file changed, 5 insertions(+)
New commits: commit 699180768bf600d646f8652c3fff886bcf052891 Author: Norbert Thiebaud <nthieb...@gmail.com> Date: Thu Jun 20 13:26:09 2013 -0500 coverity#707543 : Unitialized scalar variable Change-Id: I601b8cd42932fcba9b98a5736faa9d38525b093a Reviewed-on: https://gerrit.libreoffice.org/4406 Reviewed-by: Eike Rathke <er...@redhat.com> Tested-by: Eike Rathke <er...@redhat.com> diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx index 658623f..a08b93f 100644 --- a/svtools/source/uno/unoiface.cxx +++ b/svtools/source/uno/unoiface.cxx @@ -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; } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits