diff -Nru xdelta3-3.0.7-dfsg/debian/changelog xdelta3-3.0.7-dfsg/debian/changelog --- xdelta3-3.0.7-dfsg/debian/changelog 2016-02-09 15:51:42.000000000 +0000 +++ xdelta3-3.0.7-dfsg/debian/changelog 2016-02-17 13:11:32.000000000 +0000 @@ -1,11 +1,13 @@ -xdelta3 (3.0.7-dfsg-2ubuntu0.1) trusty-security; urgency=medium +xdelta3 (3.0.7-dfsg-2ubuntu0.2) trusty-security; urgency=medium * SECURITY UPDATE: buffer overflow in main_get_appheader - debian/patches/CVE-2014-9765.patch: add check to xdelta3-main.h, add test to xdelta3-test.h. - CVE-2014-9765 + * debian/patches/fix_lzma_test.patch: fix lzma test so we can run the + builtin tests. - -- Marc Deslauriers Tue, 09 Feb 2016 10:51:42 -0500 + -- Marc Deslauriers Wed, 17 Feb 2016 08:10:41 -0500 xdelta3 (3.0.7-dfsg-2) unstable; urgency=low diff -Nru xdelta3-3.0.7-dfsg/debian/patches/fix_lzma_test.patch xdelta3-3.0.7-dfsg/debian/patches/fix_lzma_test.patch --- xdelta3-3.0.7-dfsg/debian/patches/fix_lzma_test.patch 1970-01-01 00:00:00.000000000 +0000 +++ xdelta3-3.0.7-dfsg/debian/patches/fix_lzma_test.patch 2016-02-17 13:12:00.000000000 +0000 @@ -0,0 +1,19 @@ +Description: fix lzma test so we can run the builtin tests +Origin: backport, https://github.com/jmacd/xdelta-devel/commit/806836136cec2eeb763b4b539d4d41bc2c5bbf5c + +Index: xdelta3-3.0.7-dfsg/xdelta3-test.h +=================================================================== +--- xdelta3-3.0.7-dfsg.orig/xdelta3-test.h 2016-02-09 10:51:34.702689688 -0500 ++++ xdelta3-3.0.7-dfsg/xdelta3-test.h 2016-02-17 08:10:32.719624404 -0500 +@@ -1061,9 +1061,9 @@ + } + + /* Check expected non-failures */ +- if (non_failures != expected_non_failures) ++ if (non_failures > expected_non_failures) + { +- XPR(NT "non-failures %u; expected %u", ++ XPR(NT "non-failures %u > expected %u", + non_failures, expected_non_failures); + stream->msg = "incorrect"; + return XD3_INTERNAL; diff -Nru xdelta3-3.0.7-dfsg/debian/patches/series xdelta3-3.0.7-dfsg/debian/patches/series --- xdelta3-3.0.7-dfsg/debian/patches/series 2016-02-09 15:51:33.000000000 +0000 +++ xdelta3-3.0.7-dfsg/debian/patches/series 2016-02-17 13:10:19.000000000 +0000 @@ -4,3 +4,4 @@ Q_not_u manpage_lzma CVE-2014-9765.patch +fix_lzma_test.patch