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
962f01c3
Kaydet (Commit)
962f01c3
authored
Eyl 05, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#983652 Uncaught exception
Change-Id: I72f298c5cd0476d6e0cbf3ffaf5fdf5cd143a21c
üst
b1a5a7e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
dp_manager.cxx
desktop/source/deployment/manager/dp_manager.cxx
+12
-2
dp_backend.cxx
desktop/source/deployment/registry/dp_backend.cxx
+1
-1
dp_registry.cxx
desktop/source/deployment/registry/dp_registry.cxx
+1
-1
No files found.
desktop/source/deployment/manager/dp_manager.cxx
Dosyayı görüntüle @
962f01c3
...
...
@@ -1296,8 +1296,18 @@ bool PackageManagerImpl::synchronizeAddedExtensions(
ActivePackages
::
Entries
id2temp
(
m_activePackagesDB
->
getEntries
()
);
//check if the folder exist at all. The shared extension folder
//may not exist for a normal user.
if
(
!
create_ucb_content
(
NULL
,
m_activePackages_expanded
,
Reference
<
css
::
ucb
::
XCommandEnvironment
>
(),
false
))
bool
bOk
=
true
;
try
{
bOk
=
create_ucb_content
(
NULL
,
m_activePackages_expanded
,
Reference
<
css
::
ucb
::
XCommandEnvironment
>
(),
false
);
}
catch
(
const
css
::
ucb
::
ContentCreationException
&
)
{
bOk
=
false
;
}
if
(
!
bOk
)
return
bModified
;
::
ucbhelper
::
Content
tempFolder
(
m_activePackages_expanded
,
xCmdEnv
,
m_xComponentContext
);
...
...
desktop/source/deployment/registry/dp_backend.cxx
Dosyayı görüntüle @
962f01c3
...
...
@@ -574,7 +574,7 @@ void Package::exportTo(
::
ucbhelper
::
Content
destFolder
(
destFolderURL
,
xCmdEnv
,
getMyBackend
()
->
getComponentContext
()
);
::
ucbhelper
::
Content
sourceContent
(
getURL
(),
xCmdEnv
,
getMyBackend
()
->
getComponentContext
()
);
bool
bOk
;
bool
bOk
=
true
;
try
{
bOk
=
destFolder
.
transferContent
(
...
...
desktop/source/deployment/registry/dp_registry.cxx
Dosyayı görüntüle @
962f01c3
...
...
@@ -464,7 +464,7 @@ Reference<deployment::XPackage> PackageRegistryImpl::bindPackage(
if
(
mediaType
.
isEmpty
())
{
::
ucbhelper
::
Content
ucbContent
;
bool
bOk
;
bool
bOk
=
true
;
try
{
...
...
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