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

r14310: length needs to be initialised

(This used to be commit 20d7f2ae35761533613f9d6dcf941a5ef3c7e07b)
This commit is contained in:
Andrew Tridgell 2006-03-13 06:58:51 +00:00 committed by Gerald (Jerry) Carter
parent 3b12f543be
commit 65238dc940

View File

@ -817,7 +817,7 @@ _PUBLIC_ NTSTATUS ndr_push_DATA_BLOB(struct ndr_push *ndr, int ndr_flags, DATA_B
*/
_PUBLIC_ NTSTATUS ndr_pull_DATA_BLOB(struct ndr_pull *ndr, int ndr_flags, DATA_BLOB *blob)
{
uint32_t length;
uint32_t length = 0;
if (ndr->flags & LIBNDR_ALIGN_FLAGS) {
if (ndr->flags & LIBNDR_FLAG_ALIGN2) {