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
1fb38674
Kaydet (Commit)
1fb38674
authored
Ock 31, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1267674 Dereference after null check
Change-Id: I735e95a25b32d11b58ab3b187bfaac41b2f91e10
üst
4ad4540e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
FResultSet.cxx
connectivity/source/drivers/file/FResultSet.cxx
+4
-7
No files found.
connectivity/source/drivers/file/FResultSet.cxx
Dosyayı görüntüle @
1fb38674
...
...
@@ -1676,13 +1676,10 @@ Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL OResultSet::getP
void
OResultSet
::
doTableSpecials
(
const
OSQLTable
&
_xTable
)
{
Reference
<
::
com
::
sun
::
star
::
lang
::
XUnoTunnel
>
xTunnel
(
_xTable
,
UNO_QUERY
);
if
(
xTunnel
.
is
())
{
m_pTable
=
reinterpret_cast
<
OFileTable
*
>
(
xTunnel
->
getSomething
(
OFileTable
::
getUnoTunnelImplementationId
())
);
if
(
m_pTable
)
m_pTable
->
acquire
();
}
Reference
<
css
::
lang
::
XUnoTunnel
>
xTunnel
(
_xTable
,
UNO_QUERY_THROW
);
m_pTable
=
reinterpret_cast
<
OFileTable
*
>
(
xTunnel
->
getSomething
(
OFileTable
::
getUnoTunnelImplementationId
()));
assert
(
m_pTable
);
m_pTable
->
acquire
();
}
void
OResultSet
::
clearInsertRow
()
...
...
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