summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2016-02-12 12:50:17 +0700
committerBehdad Esfahbod <behdad@behdad.org>2016-02-12 12:50:17 +0700
commit80c8855cfeffa028d74a25df884d0e5577c95c6c (patch)
tree4326d8f5fc472ff286988a1703979d9641021d52
parent6ab920224c32e38072a0bec5e84d4b0d58b74167 (diff)
Minor
-rw-r--r--src/hb-common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hb-common.cc b/src/hb-common.cc
index e0911900..140ee0a5 100644
--- a/src/hb-common.cc
+++ b/src/hb-common.cc
@@ -540,7 +540,7 @@ hb_user_data_array_t::set (hb_user_data_key_t *key,
void *
hb_user_data_array_t::get (hb_user_data_key_t *key)
{
- hb_user_data_item_t item = {NULL };
+ hb_user_data_item_t item = {NULL, NULL, NULL};
return items.find (key, &item, lock) ? item.data : NULL;
}