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
1ca67515
Kaydet (Commit)
1ca67515
authored
Şub 25, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix CntHTTPCookieList_impl leak
üst
e87810b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
unusedcode.easy
unusedcode.easy
+0
-1
iahndl-cookies.cxx
uui/source/iahndl-cookies.cxx
+4
-4
No files found.
unusedcode.easy
Dosyayı görüntüle @
1ca67515
...
...
@@ -1163,7 +1163,6 @@ sdr::table::SdrTableObj::getRowCount() const
sfx2::TaskPaneWrapper::GetChildWindowId()
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
std::__cxx1998::multimap<_xmlNode*, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener>, std::less<_xmlNode*>, std::allocator<std::pair<_xmlNode* const, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener> > > >::~multimap()
std::__cxx1998::vector<CntHTTPCookie*, std::allocator<CntHTTPCookie*> >::~vector()
std::__cxx1998::vector<OrderedEntry*, std::allocator<OrderedEntry*> >::~vector()
std::__cxx1998::vector<ServiceInfo*, std::allocator<ServiceInfo*> >::~vector()
std::__cxx1998::vector<SfxFilter*, std::allocator<SfxFilter*> >::~vector()
...
...
uui/source/iahndl-cookies.cxx
Dosyayı görüntüle @
1ca67515
...
...
@@ -71,7 +71,7 @@ handleCookiesRequest_(
rContinuations
)
SAL_THROW
((
uno
::
RuntimeException
))
{
CntHTTPCookieList_impl
*
pCookies
=
new
CntHTTPCookieList_impl
()
;
CntHTTPCookieList_impl
aCookies
;
for
(
sal_Int32
i
=
0
;
i
<
rRequest
.
Cookies
.
getLength
();
++
i
)
{
try
...
...
@@ -109,7 +109,7 @@ handleCookiesRequest_(
OSL_ASSERT
(
false
);
break
;
}
pCookies
->
push_back
(
xCookie
.
get
()
);
aCookies
.
push_back
(
xCookie
.
get
()
);
xCookie
.
release
();
}
catch
(
std
::
bad_alloc
const
&
)
...
...
@@ -123,7 +123,7 @@ handleCookiesRequest_(
CntHTTPCookieRequest
aRequest
(
rRequest
.
URL
,
*
p
Cookies
,
a
Cookies
,
rRequest
.
Request
==
ucb
::
CookieRequest_RECEIVE
?
CNTHTTP_COOKIE_REQUEST_RECV
:
CNTHTTP_COOKIE_REQUEST_SEND
);
...
...
@@ -154,7 +154,7 @@ handleCookiesRequest_(
for
(
sal_Int32
j
=
0
;
j
<
rRequest
.
Cookies
.
getLength
();
++
j
)
if
(
rRequest
.
Cookies
[
j
].
Policy
==
ucb
::
CookiePolicy_CONFIRM
)
switch
(
(
*
p
Cookies
)[
j
]
->
m_nPolicy
)
switch
(
(
a
Cookies
)[
j
]
->
m_nPolicy
)
{
case
CNTHTTP_COOKIE_POLICY_ACCEPTED
:
xCookieHandling
->
...
...
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