mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
068f42bed7
There's a few ways to initialize a DATA_BLOB to NULL. There's the variable data_blob_null, there's ZERO_STRUCTP, and the explicit initializer. And there's the data_blob() macro which calls into data_blob_talloc_named. You have to look at that routine to see that this is nothing more than a ZERO_STRUCT() and not calling into talloc. Choose the more direct way. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>