From 3531647574ba61ce69969c501fbc82937a4d4dfa Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Wed, 22 Oct 2003 15:41:08 +0000 Subject: Fix segfault in mount.cifs helper when there is no options specified during mount (This used to be commit fb87388a9fe959ecb01d88e2f974b077bac0a34d) --- source3/client/mount.cifs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client/mount.cifs.c') diff --git a/source3/client/mount.cifs.c b/source3/client/mount.cifs.c index 7ab17a2b02..43b20e9d50 100755 --- a/source3/client/mount.cifs.c +++ b/source3/client/mount.cifs.c @@ -501,7 +501,7 @@ int main(int argc, char ** argv) ipaddr = parse_server(share_name); /* if(share_name == NULL) return 1; */ - if (parse_options(strdup(orgoptions))) + if (orgoptions && parse_options(strdup(orgoptions))) return 1; if(got_user == 0) -- cgit