From: Arne Schwabe Date: Tue, 21 Nov 2023 17:06:03 +0000 (+0100) Subject: Add missing check for nl_socket_alloc failure X-Git-Tag: v2.7_alpha1~359 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1c31e428120bb0fc9488c62c1691c92a37d94c3;p=thirdparty%2Fopenvpn.git Add missing check for nl_socket_alloc failure This can happen if the memory alloc fails. Patch V2: add goto error Patch V3: return -ENOMEM instead of going to error Change-Id: Iee66caa794d267ac5f8bee584633352893047171 Signed-off-by: Arne Schwabe Acked-by: Antonio Quartulli Message-Id: <20231121170603.886801-1-arne@rfc2549.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg27541.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/dco_linux.c b/src/openvpn/dco_linux.c index b033f8543..3c91606b7 100644 --- a/src/openvpn/dco_linux.c +++ b/src/openvpn/dco_linux.c @@ -81,6 +81,12 @@ resolve_ovpn_netlink_id(int msglevel) int ret; struct nl_sock *nl_sock = nl_socket_alloc(); + if (!nl_sock) + { + msg(msglevel, "Allocating net link socket failed"); + return -ENOMEM; + } + ret = genl_connect(nl_sock); if (ret) {