From: Andrew Tridgell Date: Mon, 20 Aug 2001 18:05:12 +0000 (+0000) Subject: allow for the NULL in make_nmb_name() X-Git-Tag: samba-2.2.5pre1~1555^2~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6c78d4c6fde2065678dd62bbd9dd4af9c5e805b;p=thirdparty%2Fsamba.git allow for the NULL in make_nmb_name() --- diff --git a/source/libsmb/nmblib.c b/source/libsmb/nmblib.c index 9d7167f3054..6a24cb382c2 100644 --- a/source/libsmb/nmblib.c +++ b/source/libsmb/nmblib.c @@ -831,7 +831,7 @@ void make_nmb_name( struct nmb_name *n, const char *name, int type) { extern pstring global_scope; memset( (char *)n, '\0', sizeof(struct nmb_name) ); - push_ascii(n->name, name, 15, STR_TERMINATE|STR_UPPER); + push_ascii(n->name, name, 16, STR_TERMINATE|STR_UPPER); n->name_type = (unsigned int)type & 0xFF; StrnCpy( n->scope, global_scope, 63 ); strupper( n->scope );