mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
ldb_kv_index: fix empty initializer compile warning
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
e4f3354821
commit
c862ad64ae
@ -2267,7 +2267,7 @@ static int ldb_kv_index_filter(struct ldb_kv_private *ldb_kv,
|
||||
struct ldb_message *filtered_msg;
|
||||
unsigned int i;
|
||||
unsigned int num_keys = 0;
|
||||
uint8_t previous_guid_key[LDB_KV_GUID_KEY_SIZE] = {};
|
||||
uint8_t previous_guid_key[LDB_KV_GUID_KEY_SIZE] = {0};
|
||||
struct ldb_val *keys = NULL;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user