summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-08-07 21:34:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:00:28 -0500
commita389bf7ae590d33fa73037ac59704f6dfc40c9ee (patch)
treefee0e52b8462bfc6f7af4203dff39cbe91a08672 /source3/lib
parent3fb336126626fa45aa842b66ac4f2b662adbfe77 (diff)
downloadsamba-a389bf7ae590d33fa73037ac59704f6dfc40c9ee.tar.gz
samba-a389bf7ae590d33fa73037ac59704f6dfc40c9ee.tar.bz2
samba-a389bf7ae590d33fa73037ac59704f6dfc40c9ee.zip
r9201: Ouch.... :-(
(This used to be commit c78760d71ec6a364a912ba35e8a90f8005fdc018)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
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),