sw/source/core/edit/edtab.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4cb05188fe07e66adc347c20e286e41bc64598ff
Author: Norbert Thiebaud <nthieb...@gmail.com>
Date:   Thu Jun 20 13:08:02 2013 -0500

    coverity#707554 Unitialized scalar variable
    
    Change-Id: I8df87c59926a62309e2ba342fe38b4915f81b3f7
    Reviewed-on: https://gerrit.libreoffice.org/4404
    Reviewed-by: Eike Rathke <er...@redhat.com>
    Tested-by: Eike Rathke <er...@redhat.com>

diff --git a/sw/source/core/edit/edtab.cxx b/sw/source/core/edit/edtab.cxx
index 1526496..a0b5de7 100644
--- a/sw/source/core/edit/edtab.cxx
+++ b/sw/source/core/edit/edtab.cxx
@@ -382,7 +382,7 @@ sal_Bool SwEditShell::IsTableBoxTextFormat() const
     if( !pBox )
         return sal_False;
 
-    sal_uInt32 nFmt;
+    sal_uInt32 nFmt = 0;
     const SfxPoolItem* pItem;
     if( SFX_ITEM_SET == pBox->GetFrmFmt()->GetAttrSet().GetItemState(
         RES_BOXATR_FORMAT, sal_True, &pItem ))
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to