From 01f09076452fe45dac176dc2c4fff1ba81f3b5e0 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 16 Oct 2023 03:56:47 +0100 Subject: gentoo auto-resync : 16:10:2023 - 03:56:47 --- net-libs/sofia-sip/Manifest | 1 - .../sofia-sip/files/1.13.8-Fix-array-size.patch | 45 ---------------------- 2 files changed, 46 deletions(-) delete mode 100644 net-libs/sofia-sip/files/1.13.8-Fix-array-size.patch (limited to 'net-libs/sofia-sip') diff --git a/net-libs/sofia-sip/Manifest b/net-libs/sofia-sip/Manifest index 5a1827887d42..b52fb6eec751 100644 --- a/net-libs/sofia-sip/Manifest +++ b/net-libs/sofia-sip/Manifest @@ -1,4 +1,3 @@ -AUX 1.13.8-Fix-array-size.patch 1849 BLAKE2B 2d266e72f7ae03d02049d1328c7e8b814d061ca52a8da3ae4e467b6b9714c69e0498a6ce70b0db9be2792c11407ab0cae5ad7fc99b99406c28b02c9eecd7f902 SHA512 c9da814e223af25d2260f2a4c642a5bbc3ff07aa47371eafa520d18942a2795e3159a66fd6350a6ed93445aca30ff44cf7f7bdd5cc7f62708c1aab8dd13a8908 DIST sofia-sip-1.13.16.tar.gz 2553298 BLAKE2B f9be6a1cd0cae96383e1d1ca8d1ef26deda5e5565dd8b223f6e6a34b596f48cd9e18536b6a53a736b20b7fcf7c67695069e1ba60ff466a932ae5642c9e0b8326 SHA512 29a5bd1e38b5b80d6cd6aeb6f3cff3c93660314a8577b550975ad6eddbc8a2ce341dff3f510cb4f24037bfb0ce5ada142b130a9576a8d6acfb06a38088cdcf50 DIST sofia-sip-1.13.9.tar.gz 2551559 BLAKE2B 69b5c0e995475a23012e2608a4b146058689c5243221ea1569e40514408884cf602dce2a53cf2468c449bbce14f03082aece0a9249f1a517829d963e56a1792d SHA512 bec7c11d94cc7243d6e1d11eb6fe0b666c018d9eb599896766b55773825cf3e218267d7e6efd1a9f7cb6e1eab79c2b6a38095bfc5a8f013a647588a676f707ec EBUILD sofia-sip-1.13.16.ebuild 877 BLAKE2B fbb8c3746d5d1a1eebeea5f547ea3c6e3a040f0c8c32f2fb0a73c3b296bed3ff2273edd3b8f673ec04088a12c321d653ed384d9a95992acc275e2bec4a601034 SHA512 dc5c716b79c9ab98b90e3dff4c919c7f67ad20123bebd770cda7d97b8b477791735bc7fc3debd1f10b6c1a6e0f8669530d4271ab8c1a947ad05aa7882ef05330 diff --git a/net-libs/sofia-sip/files/1.13.8-Fix-array-size.patch b/net-libs/sofia-sip/files/1.13.8-Fix-array-size.patch deleted file mode 100644 index 1473b18c61a5..000000000000 --- a/net-libs/sofia-sip/files/1.13.8-Fix-array-size.patch +++ /dev/null @@ -1,45 +0,0 @@ -https://github.com/freeswitch/sofia-sip/pull/134 - -From 17da7c45937cf0f66ca6a49a5661519443ebf8a7 Mon Sep 17 00:00:00 2001 -From: Matt Turner -Date: Wed, 1 Jun 2022 11:32:38 -0400 -Subject: [PATCH] Fix array size -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -check_sres_sip.c: In function ‘resolver_setup’: -check_sres_sip.c:113:19: warning: array subscript 2 is above array bounds of ‘su_addrinfo_t[2]’ {aka ‘struct addrinfo[2]’} [-Warray-bounds] - 113 | hint_udp_tcp_tls[2].ai_protocol = TPPROTO_TLS; - | ~~~~~~~~~~~~~~~~^~~ -check_sres_sip.c:69:22: note: while referencing ‘hint_udp_tcp_tls’ - 69 | static su_addrinfo_t hint_udp_tcp_tls[2]; - | ^~~~~~~~~~~~~~~~ -check_sres_sip.c:114:19: warning: array subscript 2 is above array bounds of ‘su_addrinfo_t[2]’ {aka ‘struct addrinfo[2]’} [-Warray-bounds] - 114 | hint_udp_tcp_tls[2].ai_next = NULL; - | ~~~~~~~~~~~~~~~~^~~ -check_sres_sip.c:69:22: note: while referencing ‘hint_udp_tcp_tls’ - 69 | static su_addrinfo_t hint_udp_tcp_tls[2]; - | ^~~~~~~~~~~~~~~~ - -Fixes: https://github.com/freeswitch/sofia-sip/issues/89 ---- - libsofia-sip-ua/sresolv/check_sres_sip.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libsofia-sip-ua/sresolv/check_sres_sip.c b/libsofia-sip-ua/sresolv/check_sres_sip.c -index ea392f0..e6c9642 100644 ---- a/libsofia-sip-ua/sresolv/check_sres_sip.c -+++ b/libsofia-sip-ua/sresolv/check_sres_sip.c -@@ -66,7 +66,7 @@ struct context { - } x[1]; - - static su_addrinfo_t hint_udp_tcp[2]; --static su_addrinfo_t hint_udp_tcp_tls[2]; -+static su_addrinfo_t hint_udp_tcp_tls[3]; - static su_addrinfo_t hint_udp_tcp_ip4[2]; - static su_addrinfo_t hint_tls[1]; - static su_addrinfo_t hint_tls_udp_tcp[1]; --- -2.35.1 - -- cgit v1.2.3