mirror of
https://github.com/samba-team/samba.git
synced 2025-07-30 19:42:05 +03:00
Nobody uses this, and its really just a layer of internal implementation.
Make it static (till sombody needs its...)
(This used to be commit 89dc157320
)
This commit is contained in:
@ -91,7 +91,7 @@ void data_blob_free(DATA_BLOB *d)
|
|||||||
/*******************************************************************
|
/*******************************************************************
|
||||||
clear a DATA_BLOB's contents
|
clear a DATA_BLOB's contents
|
||||||
*******************************************************************/
|
*******************************************************************/
|
||||||
void data_blob_clear(DATA_BLOB *d)
|
static void data_blob_clear(DATA_BLOB *d)
|
||||||
{
|
{
|
||||||
if (d->data) {
|
if (d->data) {
|
||||||
memset(d->data, 0, d->length);
|
memset(d->data, 0, d->length);
|
||||||
|
Reference in New Issue
Block a user