1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-17 13:57:47 +03:00

rpcstr_pull() src_len fix.

(This used to be commit 7da054d814d16deeea954e2559fdeb97dc323bbb)
This commit is contained in:
Tim Potter 2002-05-07 07:00:14 +00:00
parent 5f0a3bf295
commit 2b34442922

@ -26,7 +26,7 @@
static void fstr_pull(fstring str, UNISTR *uni)
{
rpcstr_pull(str, uni->buffer, sizeof(fstring), 0, STR_TERMINATE);
rpcstr_pull(str, uni->buffer, sizeof(fstring), -1, STR_TERMINATE);
}
/* Convert a structure to a Python dict */