summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/view/tabvwsh3.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-05-08 00:09:02 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2014-05-08 00:10:34 +0900
commit34ae7b16d7ef365f4b63dd3d4a9e756e2b77e7bd (patch)
treec3fd0ae89af977b6c066df88465cefc5d93482dd /sc/source/ui/view/tabvwsh3.cxx
parentcoverity#735932 Explicit null dereferenced (diff)
downloadcore-34ae7b16d7ef365f4b63dd3d4a9e756e2b77e7bd.tar.gz
core-34ae7b16d7ef365f4b63dd3d4a9e756e2b77e7bd.zip
Avoid possible memory leaks in case of exceptions
Change-Id: Idf1460e5207e0797390593535f2b2c080609a77b
Diffstat (limited to 'sc/source/ui/view/tabvwsh3.cxx')
-rw-r--r--sc/source/ui/view/tabvwsh3.cxx14
1 files changed, 4 insertions, 10 deletions
diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index 2b66df4b4800..7c2a2c2aa383 100644
--- a/sc/source/ui/view/tabvwsh3.cxx
+++ b/sc/source/ui/view/tabvwsh3.cxx
@@ -647,7 +647,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
{
SfxItemSet aSet ( GetPool(), SID_ATTR_ZOOM, SID_ATTR_ZOOM );
SvxZoomItem aZoomItem( eOldZoomType, nOldZoom, SID_ATTR_ZOOM );
- AbstractSvxZoomDialog* pDlg = NULL;
+ boost::scoped_ptr<AbstractSvxZoomDialog> pDlg;
ScMarkData& rMark = GetViewData()->GetMarkData();
sal_uInt16 nBtnFlags = SVX_ZOOM_ENABLE_50
| SVX_ZOOM_ENABLE_75
@@ -665,7 +665,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
if(pFact)
{
- pDlg = pFact->CreateSvxZoomDialog(GetDialogParent(), aSet );
+ pDlg.reset(pFact->CreateSvxZoomDialog(GetDialogParent(), aSet ));
OSL_ENSURE(pDlg, "Dialogdiet fail!");
}
if (pDlg)
@@ -685,8 +685,6 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
eNewZoomType = rZoomItem.GetType();
nZoom = rZoomItem.GetValue();
}
-
- delete pDlg;
}
}
@@ -966,7 +964,6 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
case FID_PROTECT_DOC:
{
ScDocument* pDoc = GetViewData()->GetDocument();
- SfxPasswordDialog* pDlg;
if( pReqArgs )
{
@@ -989,7 +986,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
{
OUString aText(ScResId(SCSTR_PASSWORD));
- pDlg = new SfxPasswordDialog(GetDialogParent(), &aText);
+ boost::scoped_ptr<SfxPasswordDialog> pDlg(new SfxPasswordDialog(GetDialogParent(), &aText));
pDlg->SetText( ScResId(SCSTR_UNPROTECTDOC) );
pDlg->SetMinLen( 0 );
pDlg->SetHelpId( GetStaticInterface()->GetSlot(FID_PROTECT_DOC)->GetCommand() );
@@ -999,7 +996,6 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
aPassword = pDlg->GetPassword();
else
bCancel = true;
- delete pDlg;
}
if (!bCancel)
{
@@ -1012,7 +1008,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
{
OUString aText(ScResId(SCSTR_PASSWORDOPT));
- pDlg = new SfxPasswordDialog( GetDialogParent(), &aText );
+ boost::scoped_ptr<SfxPasswordDialog> pDlg(new SfxPasswordDialog(GetDialogParent(), &aText));
pDlg->SetText( ScResId(SCSTR_PROTECTDOC) );
pDlg->SetMinLen( 0 );
pDlg->SetHelpId( GetStaticInterface()->GetSlot(FID_PROTECT_DOC)->GetCommand() );
@@ -1026,8 +1022,6 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
rReq.AppendItem( SfxBoolItem( FID_PROTECT_DOC, true ) );
rReq.Done();
}
-
- delete pDlg;
}
rBindings.Invalidate( FID_PROTECT_DOC );
}