cppuhelper/source/defaultbootstrap.cxx | 2 +- store/source/makefile.mk | 1 + 2 files changed, 2 insertions(+), 1 deletion(-)
New commits: commit f5a414d242f3b3bce19de4905d7b5dce9792b66c Author: Caolán McNamara <caol...@redhat.com> Date: Tue Apr 24 10:41:58 2012 +0100 WaE: simple minded MSVC2008 thinks s could be used uninitialized diff --git a/cppuhelper/source/defaultbootstrap.cxx b/cppuhelper/source/defaultbootstrap.cxx index f156ce1..f948586 100644 --- a/cppuhelper/source/defaultbootstrap.cxx +++ b/cppuhelper/source/defaultbootstrap.cxx @@ -1370,7 +1370,7 @@ rtl::OUString ServiceManager::readLegacyRdbString( { RegistryKey subkey; RegValueType t; - sal_uInt32 s; + sal_uInt32 s(0); if (key.openKey(path, subkey) != REG_NO_ERROR || subkey.getValueInfo(rtl::OUString(), &t, &s) != REG_NO_ERROR || t != RG_VALUETYPE_STRING commit a0d6c5dd9bf359d8428f26701acb6b2036b4417c Author: Caolán McNamara <caol...@redhat.com> Date: Tue Apr 24 10:21:48 2012 +0100 WaE: MSVC2008 C4530 exception handler without unwind semantics diff --git a/store/source/makefile.mk b/store/source/makefile.mk index c7ae53d..4263a57 100644 --- a/store/source/makefile.mk +++ b/store/source/makefile.mk @@ -29,6 +29,7 @@ PRJ=.. PRJNAME=store TARGET=store +ENABLE_EXCEPTIONS=TRUE # --- Settings ---
_______________________________________________ Libreoffice-commits mailing list Libreoffice-commits@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits