Kaydet (Commit) 148b9a23 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1209554 Explicit null dereferenced

Change-Id: Iacf4373221b93a97e030b09501cc91589f2fdff7
üst 3e423ebe
......@@ -1136,7 +1136,6 @@ OUString EditorWindow::GetActualSubName( sal_uLong nLine )
for( sal_uInt16 i=0; i < pMethods->Count(); i++ )
{
SbxVariable* p = PTR_CAST( SbMethod, pMethods->Get( i ) );
OUString sName = p->GetName();
SbMethod* pMeth = p ? PTR_CAST( SbMethod, p ) : NULL;
if( pMeth )
{
......@@ -1144,7 +1143,7 @@ OUString EditorWindow::GetActualSubName( sal_uLong nLine )
pMeth->GetLineRange(l1,l2);
if( (l1 <= nLine+1) && (nLine+1 <= l2) )
{
return sName;
return pMeth->GetName();
}
}
}
......
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