From: Guus Sliepen Date: Sat, 21 Jul 2012 13:51:15 +0000 (+0200) Subject: Fix crash when no netname is specified. X-Git-Tag: release-1.1pre3~86 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=ed8ce60845dc0568840c64c692838136f342fa54 Fix crash when no netname is specified. --- diff --git a/src/tincctl.c b/src/tincctl.c index 24359ab7..ca354bc0 100644 --- a/src/tincctl.c +++ b/src/tincctl.c @@ -192,7 +192,7 @@ static bool parse_options(int argc, char **argv) { /* netname "." is special: a "top-level name" */ - if(!strcmp(netname, ".")) { + if(netname && !strcmp(netname, ".")) { free(netname); netname = NULL; } diff --git a/src/tincd.c b/src/tincd.c index 85aee39f..9879ecb6 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -231,7 +231,7 @@ static bool parse_options(int argc, char **argv) { /* netname "." is special: a "top-level name" */ - if(!strcmp(netname, ".")) { + if(netname && !strcmp(netname, ".")) { free(netname); netname = NULL; }