This removes the 3rd argument from init_unistr2(). There were 240
authorAndrew Tridgell <tridge@samba.org>
Fri, 17 Jan 2003 04:58:45 +0000 (04:58 +0000)
committerAndrew Tridgell <tridge@samba.org>
Fri, 17 Jan 2003 04:58:45 +0000 (04:58 +0000)
commitec879eacc263043409b584797d1e8c39258ba125
tree7a7775040b27f7fea0f7bd1c8f0ede91c9ce770d
parentba51d1d888f98e196627486490e8569faeb641c2
This removes the 3rd argument from init_unistr2(). There were 240
calls to init_unistr2() in the code and every one of them got the 3rd
argument incorrect, so I thought it best just to remove the argument.

The incorrect usage was caused by callers using strlen() to determine
the length of the string. The 3rd argument to init_unistr2() was
supposed to be the character length, not the byte length of the
string, so for non-english this could come out wrong.

I also removed the bogus 'always allocate at least 256 bytes'
hack. There may be some code that relies on this, but if there is then
the code is broken and needs fixing.
(This used to be commit b9eff31b1433c81fbff733e194914a40f25e3bda)
17 files changed:
source3/python/py_spoolss_forms.c
source3/python/py_spoolss_forms_conv.c
source3/registry/reg_printing.c
source3/rpc_client/cli_srvsvc.c
source3/rpc_parse/parse_dfs.c
source3/rpc_parse/parse_lsa.c
source3/rpc_parse/parse_misc.c
source3/rpc_parse/parse_net.c
source3/rpc_parse/parse_reg.c
source3/rpc_parse/parse_samr.c
source3/rpc_parse/parse_spoolss.c
source3/rpc_parse/parse_srv.c
source3/rpc_server/srv_dfs_nt.c
source3/rpc_server/srv_lsa_nt.c
source3/rpc_server/srv_samr_nt.c
source3/rpc_server/srv_spoolss_nt.c
source3/rpcclient/cmd_spoolss.c