From a3b67626018ade2a823311b65202ab7f488ca0a7 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Wed, 22 Oct 2003 15:52:36 +0000 Subject: [PATCH] Fix segfault in mount.cifs helper when there is no options specified during mount --- source/client/mount.cifs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/mount.cifs.c b/source/client/mount.cifs.c index 7ab17a2b028..43b20e9d502 100755 --- a/source/client/mount.cifs.c +++ b/source/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) -- 2.11.4.GIT