From d0aee368a13191b456437c169b22187cd6c52ba8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 3 Sep 2004 12:52:04 +0000 Subject: r2205: fixed an incorrect cast that broke relative strings in spoolss (This used to be commit d2d3433de1c1e1bc757381e9736147cc24fe8cf0) --- source4/librpc/ndr/ndr_basic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/librpc') diff --git a/source4/librpc/ndr/ndr_basic.c b/source4/librpc/ndr/ndr_basic.c index d015cc5e48..01205d4043 100644 --- a/source4/librpc/ndr/ndr_basic.c +++ b/source4/librpc/ndr/ndr_basic.c @@ -548,7 +548,7 @@ NTSTATUS ndr_pull_string(struct ndr_pull *ndr, int ndr_flags, const char **s) break; case LIBNDR_FLAG_STR_NULLTERM: - len1 = strnlen_w((const smb_ucs2_t *)ndr->data+ndr->offset, + len1 = strnlen_w((const smb_ucs2_t *)(ndr->data+ndr->offset), (ndr->data_size - ndr->offset)/2); if (len1*2+2 <= ndr->data_size - ndr->offset) { len1++; -- cgit