diff options
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_lsa.c | 5 | ||||
-rw-r--r-- | source3/rpc_parse/parse_misc.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c index 239c0847af..cb88e71536 100644 --- a/source3/rpc_parse/parse_lsa.c +++ b/source3/rpc_parse/parse_lsa.c @@ -688,9 +688,10 @@ void make_q_lookup_names(LSA_Q_LOOKUP_NAMES *q_l, POLICY_HND *hnd, for (i = 0; i < num_names; i++) { - int len = strlen(names[i]); + const char* name = names[i]; + int len = strlen(name); make_uni_hdr(&q_l->hdr_name[i], len, len, len != 0); - make_unistr2(&q_l->uni_name[i], names[i], len); + make_unistr2(&q_l->uni_name[i], name, len); } q_l->num_trans_entries = 0; diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c index e1a7d3c6a5..bf3bba1249 100644 --- a/source3/rpc_parse/parse_misc.c +++ b/source3/rpc_parse/parse_misc.c @@ -563,7 +563,7 @@ void smb_io_string2(char *desc, STRING2 *str2, uint32 buffer, prs_struct *ps, i /******************************************************************* creates a UNISTR2 structure. ********************************************************************/ -void make_unistr2(UNISTR2 *str, char *buf, int len) +void make_unistr2(UNISTR2 *str, const char *buf, int len) { ZERO_STRUCTP(str); @@ -573,7 +573,7 @@ void make_unistr2(UNISTR2 *str, char *buf, int len) str->uni_str_len = len; /* store the string (null-terminated 8 bit chars into 16 bit chars) */ - struni2((char *)(str->buffer), buf); + struni2((char*)(str->buffer), buf); } /******************************************************************* |