Danilo Spinella
26ef652291
Accepting request 1140703 from home:dspinella:branches:devel:libraries:c_c++
...
- The following bugs and CVEs are not affecting TW:
* CVE-2018-18584
* CVE-2018-18585
* CVE-2018-18586
* CVE-2019-1010305
* bsc#1113038
* bsc#1113039
* bsc#1113040
* bsc#1130489
* bsc#1141680
OBS-URL: https://build.opensuse.org/request/show/1140703
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=45
2024-01-22 17:18:36 +00:00
b96bddba93
Accepting request 1063388 from home:polslinux:branches:devel:libraries:c_c++
...
- Update to version 0.11:
* see https://github.com/kyz/libmspack/blob/master/libmspack/ChangeLog
for a full changelog
OBS-URL: https://build.opensuse.org/request/show/1063388
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=43
2023-02-08 09:47:51 +00:00
1fc93d07d3
Accepting request 682253 from home:mnhauke
...
- Update to version 0.10.1
* Bugfix release, no functional changes
- Update to version 0.10:
* Fix Heap buffer overflow in chmd_read_headers()
* Fix memory exhausted in chmd_read_headers()
* Fix memory exhausted in oabd_decompress()
OBS-URL: https://build.opensuse.org/request/show/682253
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=41
2019-03-07 09:59:57 +00:00
ac7fc05bf4
Accepting request 647107 from home:sbrabec:branches:devel:libraries:c_c++
...
- Update to version 0.9.1:
* Fix bug in decompressing data to get to the correct folder
offset when the folder is LZX compressed (0.8 regression).
* Build system cleanup
* Testsuite available
* Does not install testing tools and examples by default.
- Rename mspack-tools to mspack-examples to follow upstream change.
OBS-URL: https://build.opensuse.org/request/show/647107
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=39
2018-11-08 06:41:32 +00:00
Ismail Dönmez
60e8b0526d
Accepting request 644075 from home:sbrabec:branches:devel:libraries:c_c++
...
- Update to version 0.8:
* New parameter MSCABD_PARAM_SALVAGE which permits salvaging
badly damaged files rather than rejecting them outright.
* Fix the above 38912-byte Quantum CAB block bug.
* Reject blank CHM filenames that are blank because they have
embedded null bytes.
* chmextract: Protect from absolute/relative pathnames in CHM
files.
OBS-URL: https://build.opensuse.org/request/show/644075
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=37
2018-10-24 07:40:39 +00:00
0e8838ab97
Add bug references date.
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=36
2018-07-30 14:59:52 +00:00
165c29d5bc
Add bug references.
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=35
2018-07-30 14:59:18 +00:00
Ismail Dönmez
468fe62f27
Accepting request 625481 from home:sbrabec:branches:devel:libraries:c_c++
...
- Update to version 0.7:
* Fix 1 or 2 byte overwrite by bad KWAJ file header extensions
* Fix 1 byte overread by character U+0100 in a CHM filename
* Reject blank CHM filenames.
* Fix off-by-1 in CHM PMGI/PMGL chunk number validity checks,
which could cause a crash.
OBS-URL: https://build.opensuse.org/request/show/625481
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=34
2018-07-27 08:22:28 +00:00
438892772f
- Correct mspack-tools group to Productivity/File utilities
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=31
2018-01-19 07:08:08 +00:00
5e3e542810
Accepting request 566492 from home:mnhauke:branches:devel:libraries:c_c++
...
- Fix typo
OBS-URL: https://build.opensuse.org/request/show/566492
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=30
2018-01-17 10:16:19 +00:00
1849dbe8bd
Accepting request 566584 from home:jengelh:branches:devel:libraries:c_c++
...
- Correct SRPM group.
OBS-URL: https://build.opensuse.org/request/show/566584
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=29
2018-01-17 10:14:27 +00:00
Ismail Dönmez
58e049ee3e
Remove duplicate entry
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=27
2018-01-16 15:11:49 +00:00
Ismail Dönmez
30e2f2408d
Accepting request 565794 from home:mnhauke:branches:devel:libraries:c_c++
...
- Update to version 0.6
* read_spaninfo(): a CHM file can have no ResetTable and have a
negative length in SpanInfo, which then feeds a negative output
length to lzxd_init(), which then sets frame_size to a value of
your choosing, the lower 32 bits of output length, larger than
LZX_FRAME_SIZE. If the first LZX block is uncompressed, this
writes data beyond the end of the window.
This issue was raised by ClamAV as CVE-2017-6419.
* lzxd_init(), lzxd_set_output_length(), mszipd_init(): due to the
issue mentioned above, these functions now reject negative lengths
* cabd_read_string(): add missing error check on result of read().
If an mspack_system implementation returns an error, it's
interpreted as a huge positive integer, which leads to reading
past the end of the stack-based buffer.
This issue was raised by ClamAV as CVE-2017-11423
- Add subpackage for helper tools
- Run spec-cleaner
- Update to version 0.6
OBS-URL: https://build.opensuse.org/request/show/565794
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=26
2018-01-16 14:34:02 +00:00
Ismail Dönmez
fccbd7059e
Accepting request 288133 from home:sbrabec:branches:devel:libraries:c_c++
...
- Remove problematic libmspack-qtmd_decompress-loop.patch
(bnc#912214#c10).
Version 0.5 has a correct fix dated 2015-01-05.
OBS-URL: https://build.opensuse.org/request/show/288133
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=24
2015-02-28 09:56:34 +00:00
Ismail Dönmez
a70b03b449
Accepting request 285730 from home:posophe:branches:devel:libraries:c_c++
...
Update
OBS-URL: https://build.opensuse.org/request/show/285730
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=22
2015-02-12 09:46:57 +00:00
6dc01ac368
Accepting request 282134 from home:sbrabec:branches:devel:libraries:c_c++
...
- Fix possible infinite loop caused DoS (bnc912214, CVE-2014-9556,
libmspack-qtmd_decompress-loop.patch).
OBS-URL: https://build.opensuse.org/request/show/282134
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=20
2015-01-20 17:59:25 +00:00
Stephan Kulow
fb143e0a84
Accepting request 229001 from home:jengelh:branches:devel:libraries:c_c++
...
- Add baselibs.conf: wxWidgets-32bit depends on libmspack0-32bit
OBS-URL: https://build.opensuse.org/request/show/229001
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=18
2014-04-04 14:49:17 +00:00
866ad5d629
.
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=16
2013-06-24 10:14:38 +00:00
8e23661acc
Accepting request 180585 from home:dimstar:branches:GNOME:Factory
...
Update to 0.4 - needed by evolution-ews 3.9.3 for Factory
OBS-URL: https://build.opensuse.org/request/show/180585
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=15
2013-06-22 21:47:04 +00:00
2571e1c2a1
Accepting request 128253 from home:a_jaeger:FactoryFix
...
Remove autoreconf call, libtool buildrequires.
OBS-URL: https://build.opensuse.org/request/show/128253
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=13
2012-07-19 11:08:19 +00:00
815cf5323c
Accepting request 128249 from home:sbrabec:branches:devel:libraries:c_c++
...
- Update to version 0.3alpha:
* code cleanup and build system update
* handle corrupted cabinet files better
* handle special cases of cabinet files
- License update: LGPL-2.1 only.
OBS-URL: https://build.opensuse.org/request/show/128249
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=12
2012-07-18 17:55:28 +00:00
Ismail Dönmez
70837631f7
Accepting request 107184 from home:babelworx:ldig:branches:devel:libraries:c_c++
...
license update: LGPL-2.1+
No indication of GPL-2.0+ code in the package
OBS-URL: https://build.opensuse.org/request/show/107184
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=10
2012-02-27 15:50:18 +00:00
Stephan Kulow
1027c6779d
Accepting request 104383 from devel:openSUSE:Factory:patch-license
...
patch license to follow spdx.org standard
OBS-URL: https://build.opensuse.org/request/show/104383
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=9
2012-02-13 15:43:15 +00:00
5d717d6a13
Remove redundant/unwanted tags/section (cf. specfile guidelines); use %_smp_mflags for build
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=6
2011-11-20 20:45:54 +00:00
Ismail Dönmez
8c9a9759d9
Accepting request 92547 from home:coolo:removelibtool
...
add libtool to buildrequires
OBS-URL: https://build.opensuse.org/request/show/92547
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmspack?expand=0&rev=5
2011-11-19 21:04:58 +00:00
Ruediger Oertel
ed763820e7
Accepting request 56682 from devel:libraries:c_c++
...
Accepted submit request 56682 from user elvigia
OBS-URL: https://build.opensuse.org/request/show/56682
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmspack?expand=0&rev=9
2010-12-28 23:16:18 +00:00
OBS User unknown
5715fc5cbe
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmspack?expand=0&rev=2
2008-01-17 22:38:41 +00:00
OBS User unknown
039c240168
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmspack?expand=0&rev=1
2007-01-15 23:22:28 +00:00