1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-18 00:40:36 +00:00

Fixed a bug failing to check initialization in non-UPnP-supporting

setups
This commit is contained in:
BuildTools 2017-02-21 22:02:20 -05:00
parent 4403734d97
commit ac9aa4783a

@ -106,7 +106,7 @@ static bool natt_open_port(struct natt_status *status,
int r;
/* if NAT traversal is uninitialized or unavailable, oh well */
if (!urls.controlURL[0])
if (!urls.controlURL || !urls.controlURL[0])
return false;
/* figure out the internal info */