From b5ac1068d13ffc83369d8dc7637a4c482d2815dc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 8 Jun 2009 10:05:11 +0200 Subject: Further fix for 6449 Thanks to TAKAHASHI Motonobu for reporting! --- source3/utils/net_rap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils') diff --git a/source3/utils/net_rap.c b/source3/utils/net_rap.c index 88db5122b1..a43840aac4 100644 --- a/source3/utils/net_rap.c +++ b/source3/utils/net_rap.c @@ -963,7 +963,7 @@ static int rap_group_add(struct net_context *c, int argc, const char **argv) /* BB check for length 21 or smaller explicitly ? BB */ safe_strcpy(grinfo.group_name, argv[0], sizeof(grinfo.group_name)-1); grinfo.reserved1 = '\0'; - grinfo.comment = smb_xstrdup(c->opt_comment); + grinfo.comment = smb_xstrdup(c->opt_comment ? c->opt_comment : ""); ret = cli_NetGroupAdd(cli, &grinfo); cli_shutdown(cli); -- cgit