From ad6ea7b189a467833fcde6a0acdb8ceb7e7198c9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Jan 2010 20:14:04 +0100 Subject: lib/util: remove data_blob_talloc_reference() We want to avoid the usage of talloc_reference() in Samba. metze --- lib/util/data_blob.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'lib/util/data_blob.h') diff --git a/lib/util/data_blob.h b/lib/util/data_blob.h index c294533960..83e6cd5f09 100644 --- a/lib/util/data_blob.h +++ b/lib/util/data_blob.h @@ -60,12 +60,6 @@ _PUBLIC_ DATA_BLOB data_blob_named(const void *p, size_t length, const char *nam **/ _PUBLIC_ DATA_BLOB data_blob_talloc_named(TALLOC_CTX *mem_ctx, const void *p, size_t length, const char *name); -/** - reference a data blob, to the supplied TALLOC_CTX. - Returns a NULL DATA_BLOB on failure -**/ -_PUBLIC_ DATA_BLOB data_blob_talloc_reference(TALLOC_CTX *mem_ctx, DATA_BLOB *blob); - /** construct a zero data blob, using supplied TALLOC_CTX. use this sparingly as it initialises data - better to initialise -- cgit