1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

libcli: Use data_blob_null

Autobuild-User: Volker Lendecke <vl@samba.org>
Autobuild-Date: Wed Apr 25 18:54:51 CEST 2012 on sn-devel-104
This commit is contained in:
Volker Lendecke 2012-04-25 11:49:56 +02:00
parent e952191fcc
commit 5a100a4b1b

View File

@ -180,7 +180,7 @@ NTSTATUS smb2_create_blob_add(TALLOC_CTX *mem_ctx, struct smb2_create_blobs *b,
data.length);
NT_STATUS_HAVE_NO_MEMORY(b->blobs[b->num_blobs].data.data);
} else {
b->blobs[b->num_blobs].data = data_blob(NULL, 0);
b->blobs[b->num_blobs].data = data_blob_null;
}
b->num_blobs += 1;