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
592b43ac
Kaydet (Commit)
592b43ac
authored
Eyl 30, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bridges: fix build with --enable-assert-always-abort
Change-Id: I6079481046ca3f7d66975d41fccc15b862a3223b
üst
358ca9ea
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
except.cxx
bridges/source/cpp_uno/msvc_win32_intel/except.cxx
+2
-3
except.cxx
bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
+1
-2
No files found.
bridges/source/cpp_uno/msvc_win32_intel/except.cxx
Dosyayı görüntüle @
592b43ac
...
@@ -188,10 +188,9 @@ inline void * ObjectFunction::operator new ( size_t nSize )
...
@@ -188,10 +188,9 @@ inline void * ObjectFunction::operator new ( size_t nSize )
if
(
pMem
!=
0
)
if
(
pMem
!=
0
)
{
{
DWORD
old_protect
;
DWORD
old_protect
;
#if OSL_DEBUG_LEVEL > 0
BOOL
success
=
BOOL
success
=
#endif
VirtualProtect
(
pMem
,
nSize
,
PAGE_EXECUTE_READWRITE
,
&
old_protect
);
VirtualProtect
(
pMem
,
nSize
,
PAGE_EXECUTE_READWRITE
,
&
old_protect
)
;
(
void
)
success
;
assert
(
success
&&
"VirtualProtect() failed!"
);
assert
(
success
&&
"VirtualProtect() failed!"
);
}
}
return
pMem
;
return
pMem
;
...
...
bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
Dosyayı görüntüle @
592b43ac
...
@@ -655,10 +655,9 @@ RaiseInfo::RaiseInfo(typelib_TypeDescription * pTD)throw ()
...
@@ -655,10 +655,9 @@ RaiseInfo::RaiseInfo(typelib_TypeDescription * pTD)throw ()
&
~
static_cast
<
sal_uInt64
>
(
ExceptionInfos
::
allocationGranularity
-
1
);
&
~
static_cast
<
sal_uInt64
>
(
ExceptionInfos
::
allocationGranularity
-
1
);
DWORD
old_protect
;
DWORD
old_protect
;
#if OSL_DEBUG_LEVEL > 0
BOOL
success
=
BOOL
success
=
#endif
VirtualProtect
(
pCode
,
codeSize
,
PAGE_EXECUTE_READWRITE
,
&
old_protect
);
VirtualProtect
(
pCode
,
codeSize
,
PAGE_EXECUTE_READWRITE
,
&
old_protect
);
(
void
)
success
;
assert
(
success
&&
"VirtualProtect() failed!"
);
assert
(
success
&&
"VirtualProtect() failed!"
);
::
typelib_typedescription_acquire
(
pTD
);
::
typelib_typedescription_acquire
(
pTD
);
...
...
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