Author: metze
Date: 2007-01-13 15:39:49 +0000 (Sat, 13 Jan 2007)
New Revision: 20734

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20734

Log:
always terminate the string... so that an empty data_blob
gets '\0' as "" string

metze
Modified:
   branches/SAMBA_4_0/source/lib/util/data_blob.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/util/data_blob.c
===================================================================
--- branches/SAMBA_4_0/source/lib/util/data_blob.c      2007-01-13 15:29:47 UTC 
(rev 20733)
+++ branches/SAMBA_4_0/source/lib/util/data_blob.c      2007-01-13 15:39:49 UTC 
(rev 20734)
@@ -163,6 +163,7 @@
        for (i = 0; i < blob->length; i++)
                slprintf(&hex_string[i*2], 3, "%02X", blob->data[i]);
 
+       hex_string[(blob->length*2)] = '\0';
        return hex_string;
 }
 

Reply via email to