From a389bf7ae590d33fa73037ac59704f6dfc40c9ee Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 7 Aug 2005 21:34:55 +0000 Subject: r9201: Ouch.... :-( (This used to be commit c78760d71ec6a364a912ba35e8a90f8005fdc018) --- source3/lib/util_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 1252c6756b..06f9018269 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -802,7 +802,7 @@ DATA_BLOB strhex_to_data_blob(TALLOC_CTX *mem_ctx, const char *strhex) if (mem_ctx != NULL) ret_blob = data_blob_talloc(mem_ctx, NULL, strlen(strhex)/2+1); else - data_blob(NULL, strlen(strhex)/2+1); + ret_blob = data_blob(NULL, strlen(strhex)/2+1); ret_blob.length = strhex_to_str((char*)ret_blob.data, strlen(strhex), -- cgit