summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/rpc_parse/parse_misc.c')
-rw-r--r--source3/rpc_parse/parse_misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c
index 78524201ff..0343dea484 100644
--- a/source3/rpc_parse/parse_misc.c
+++ b/source3/rpc_parse/parse_misc.c
@@ -424,10 +424,10 @@ creates a STRING2 structure.
********************************************************************/
void make_string2(STRING2 *str, char *buf, int len)
{
- /* set up string lengths. add one if string is not null-terminated */
- str->str_max_len = len+1;
+ /* set up string lengths. */
+ str->str_max_len = len;
str->undoc = 0;
- str->str_str_len = len+1;
+ str->str_str_len = len;
/* store the string */
memcpy(str->buffer, buf, len);