slackware-current/source/a/bzip2/bzip2.saneso.diff
Patrick J Volkerding b2bf157be9 Mon Jul 15 00:26:07 UTC 2019
a/bzip2-1.0.8-x86_64-1.txz:  Upgraded.
  Fixes security issues:
  bzip2recover: Fix use after free issue with outFile.
  Make sure nSelectors is not out of range.
  For more information, see:
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-3189
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12900
  (* Security fix *)
a/kernel-generic-4.19.59-x86_64-1.txz:  Upgraded.
a/kernel-huge-4.19.59-x86_64-1.txz:  Upgraded.
a/kernel-modules-4.19.59-x86_64-1.txz:  Upgraded.
d/kernel-headers-4.19.59-x86-1.txz:  Upgraded.
k/kernel-source-4.19.59-noarch-1.txz:  Upgraded.
l/libwebp-1.0.3-x86_64-1.txz:  Upgraded.
n/dovecot-2.3.7-x86_64-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2019-07-15 08:59:48 +02:00

20 lines
700 B
Diff

--- ./Makefile-libbz2_so.orig 2019-06-28 13:18:39.579977418 -0500
+++ ./Makefile-libbz2_so 2019-06-28 13:20:04.753971278 -0500
@@ -35,13 +35,13 @@
bzlib.o
all: $(OBJS)
- $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.8 $(OBJS)
+ $(CC) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.8 $(OBJS)
$(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8
- rm -f libbz2.so.1.0
- ln -s libbz2.so.1.0.8 libbz2.so.1.0
+ rm -f libbz2.so.1
+ ln -s libbz2.so.1.0.8 libbz2.so.1
clean:
- rm -f $(OBJS) bzip2.o libbz2.so.1.0.8 libbz2.so.1.0 bzip2-shared
+ rm -f $(OBJS) bzip2.o libbz2.so.1.0.8 libbz2.so.1 bzip2-shared
blocksort.o: blocksort.c
$(CC) $(CFLAGS) -c blocksort.c