From ed3c3e3c7975f9688fe76784a34be6ad189538ed Mon Sep 17 00:00:00 2001 From: David Bauer Date: Thu, 25 Jul 2019 18:58:03 +0200 Subject: fastd: fix segmentation fault with musl >1.1.20 When compiled with musl >1.1.20, fastd will crash in case it can't resolve a peers hostname. This is due to a changed implementation of freeaddrinfo in musl 1.1.21 onwards. This segfault is fixed by not calling freeaddrinfo in case the supplied pointer is null. Signed-off-by: David Bauer --- net/fastd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/fastd/Makefile') diff --git a/net/fastd/Makefile b/net/fastd/Makefile index 4e2bcd5f9..2626b6921 100644 --- a/net/fastd/Makefile +++ b/net/fastd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fastd PKG_VERSION:=18 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_MAINTAINER:=Matthias Schiffer PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -- cgit v1.2.3