From: Volker Lendecke Date: Mon, 8 Jun 2009 08:05:11 +0000 (+0200) Subject: Further fix for 6449 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa03326fe523e9bc85e6db276f94e9d04aaf009d;p=thirdparty%2Fsamba.git Further fix for 6449 Thanks to TAKAHASHI Motonobu for reporting! --- diff --git a/source/utils/net_rap.c b/source/utils/net_rap.c index 573f18db60e..c04b0793cc1 100644 --- a/source/utils/net_rap.c +++ b/source/utils/net_rap.c @@ -962,7 +962,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);