This doesn't look like it has anything to do with character set conversion, but it...
authorJeremy Allison <jra@samba.org>
Wed, 30 Mar 2011 16:58:22 +0000 (09:58 -0700)
committerJeremy Allison <jra@samba.org>
Wed, 30 Mar 2011 16:58:22 +0000 (09:58 -0700)
commitc964744001cd231e585c5c5c9016becda145340b
treeaefc0ccdd0cc62f3f238c185b37313b13f3830b9
parent8f4e39f6f7636ad36d686a52aaefc18a411a7f02
This doesn't look like it has anything to do with character set conversion, but it does :-).

Turns out one of the *really* significant differences between
convert_string() in source4 and source3, is that the one in
source3 will return 0 for byte length converted when called
with dest_len = 0 whereas the one in source4 returns (size_t)-1
and sets errno to E2BIG.

Allow the ndr_string code to cope with the (arguably correct)
way that the source4 implementation works. This code only gets
excercised in the print spooler tests, which aren't run in source4,
which is why this bug has lasted for so long.

You don't want to know how long it took me to find this :-).

Jeremy.
librpc/ndr/ndr_string.c