1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 05:43:33 +03:00

Avoid NULL pointer dereference on macOS

This commit is contained in:
Frank Denis 2016-11-04 16:22:49 +01:00
parent dbe9a10fc1
commit 9e0b6d2fa9

View file

@ -413,7 +413,7 @@ open_tun(const char *tun_device)
char tun_name[50];
#ifdef DARWIN
if (!strncmp(tun_device, "utun", 4)) {
if (tun_device != NULL && !strncmp(tun_device, "utun", 4)) {
tun_fd = open_utun(tun_device);
if (tun_fd >= 0) {
return tun_fd;