From 80c8855cfeffa028d74a25df884d0e5577c95c6c Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 12 Feb 2016 12:50:17 +0700 Subject: [PATCH] Minor --- src/hb-common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-common.cc b/src/hb-common.cc index e09119009..140ee0a57 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; }