diff options
| author | Robert Högberg | 2021-08-03 18:34:31 +0000 |
|---|---|---|
| committer | Robert Högberg | 2021-08-03 18:34:31 +0000 |
| commit | 7c35652d3a1ab707d5b064c9e61b67557a549221 (patch) | |
| tree | e7ad78d793efc4dcf469d809b423d2b727651d3e | |
| parent | 492c89974b467d4c54e5219fa37a3a360c381a03 (diff) | |
| download | telephony-7c35652d3a1ab707d5b064c9e61b67557a549221.tar.gz | |
yate: bump to 6.4.0
Signed-off-by: Robert Högberg <robert.hogberg@gmail.com>
| -rw-r--r-- | net/yate/Makefile | 6 | ||||
| -rw-r--r-- | net/yate/patches/110-upstream-crash-fix-r6470.patch | 15 |
2 files changed, 3 insertions, 18 deletions
diff --git a/net/yate/Makefile b/net/yate/Makefile index 782bf03..525683d 100644 --- a/net/yate/Makefile +++ b/net/yate/Makefile @@ -9,12 +9,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=yate -PKG_VERSION:=6.3.0-1 -PKG_RELEASE:=2 +PKG_VERSION:=6.4.0-1 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://yate.null.ro/tarballs/yate6/ -PKG_HASH:=cbd3afc417da7b26b4d7f57146c815a667db2bf1ff4d1ea9dae986954cbcd62f +PKG_HASH:=8c23dc6bffbf8d478db3a85964b5019771c8f6c9acf5220f3465516a748a03b0 PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=COPYING diff --git a/net/yate/patches/110-upstream-crash-fix-r6470.patch b/net/yate/patches/110-upstream-crash-fix-r6470.patch deleted file mode 100644 index 9c73e57..0000000 --- a/net/yate/patches/110-upstream-crash-fix-r6470.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/modules/ysipchan.cpp -+++ b/modules/ysipchan.cpp -@@ -3415,8 +3415,10 @@ int YateSIPUDPTransport::process() - } - - SIPMessage* msg = SIPMessage::fromParsing(0,b,res); -- msg->msgPrint = print; -- receiveMsg(msg); -+ if (msg) { -+ msg->msgPrint = print; -+ receiveMsg(msg); -+ } - return 0; - } - |