Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
148b9a23
Kaydet (Commit)
148b9a23
authored
May 07, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1209554 Explicit null dereferenced
Change-Id: Iacf4373221b93a97e030b09501cc91589f2fdff7
üst
3e423ebe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
baside2b.cxx
basctl/source/basicide/baside2b.cxx
+1
-2
No files found.
basctl/source/basicide/baside2b.cxx
Dosyayı görüntüle @
148b9a23
...
...
@@ -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
()
;
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment