From c78760d71ec6a364a912ba35e8a90f8005fdc018 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 7 Aug 2005 21:34:55 +0000 Subject: [PATCH] r9201: Ouch.... :-( --- source/lib/util_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/util_str.c b/source/lib/util_str.c index 1252c6756bf..06f90182695 100644 --- a/source/lib/util_str.c +++ b/source/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),