[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - download.lst external/libvisio
Fridrich Štrba
fridrich.strba at bluewin.ch
Sat Dec 26 03:03:19 PST 2015
download.lst | 4 ++--
external/libvisio/UnpackedTarball_libvisio.mk | 4 ----
external/libvisio/ubsan.patch | 15 ---------------
3 files changed, 2 insertions(+), 21 deletions(-)
New commits:
commit f15c35d8daa71ce2a1388ffe46776900c1ffee35
Author: Fridrich Štrba <fridrich.strba at bluewin.ch>
Date: Wed Dec 23 15:31:14 2015 +0100
Upload libvisio 0.1.4
Change-Id: Ia4cb506a95a150b8106187719e9104760409dea6
(cherry picked from commit ce014ac76678f186da27faadc973af3eb253c817)
Reviewed-on: https://gerrit.libreoffice.org/20952
Reviewed-by: David Tardon <dtardon at redhat.com>
Tested-by: David Tardon <dtardon at redhat.com>
diff --git a/download.lst b/download.lst
index 3dcd249..e771fb6 100755
--- a/download.lst
+++ b/download.lst
@@ -144,8 +144,8 @@ export SERF_TARBALL := serf-1.2.1.tar.bz2
export SWING_TARBALL := 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
export UCPP_TARBALL := 0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
export VIGRA_TARBALL := d62650a6f908e85643e557a236ea989c-vigra1.6.0.tar.gz
-export VISIO_MD5SUM := 617f800ab7639fd76c062ab74896318e
-export VISIO_TARBALL := libvisio-0.1.3.tar.bz2
+export VISIO_MD5SUM := 3f829e7e5f7304da37446938bb0df1f5
+export VISIO_TARBALL := libvisio-0.1.4.tar.bz2
export WPD_MD5SUM := 0773d79a1f240ef9f4f20242b13c5bb7
export WPD_TARBALL := libwpd-0.10.0.tar.bz2
export WPG_MD5SUM := 17da9770cb8b317b7633f9807b32b71a
diff --git a/external/libvisio/UnpackedTarball_libvisio.mk b/external/libvisio/UnpackedTarball_libvisio.mk
index 027c38e..f9467c5 100644
--- a/external/libvisio/UnpackedTarball_libvisio.mk
+++ b/external/libvisio/UnpackedTarball_libvisio.mk
@@ -13,10 +13,6 @@ $(eval $(call gb_UnpackedTarball_set_tarball,libvisio,$(VISIO_TARBALL)))
$(eval $(call gb_UnpackedTarball_set_patchlevel,libvisio,0))
-$(eval $(call gb_UnpackedTarball_add_patches,libvisio,\
- external/libvisio/ubsan.patch \
-))
-
ifeq ($(COM_IS_CLANG),TRUE)
ifneq ($(filter -fsanitize=%,$(CC)),)
$(eval $(call gb_UnpackedTarball_add_patches,libvisio, \
diff --git a/external/libvisio/ubsan.patch b/external/libvisio/ubsan.patch
deleted file mode 100644
index 16b0ec4..0000000
--- a/external/libvisio/ubsan.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/lib/VSDParser.cpp
-+++ src/lib/VSDParser.cpp
-@@ -1104,7 +1104,11 @@
- input->seek(1, librevenge::RVNG_SEEK_CUR);
- double scale = readDouble(input);
- input->seek(1, librevenge::RVNG_SEEK_CUR);
-- scale /= readDouble(input);
-+ double scaleDenom = readDouble(input);
-+ if (scaleDenom != 0)
-+ {
-+ scale /= scaleDenom;
-+ }
-
- if (m_isStencilStarted && m_currentStencil)
- {
More information about the Libreoffice-commits
mailing list