fix tlvdb_get_uint8

This commit is contained in:
merlokk 2019-02-19 21:28:19 +02:00
commit e793fa8d73

View file

@ -551,8 +551,7 @@ struct tlvdb *tlvdb_elm_get_parent(struct tlvdb *tlvdb)
bool tlvdb_get_uint8(struct tlvdb *tlvRoot, tlv_tag_t tag, uint8_t *value)
{
const struct tlvdb *tlvdb = tlvdb_get(tlvRoot, tag, NULL);
const struct tlv *tlvelm = tlvdb_get_tlv(tlvdb);
const struct tlv *tlvelm = tlvdb_get(tlvRoot, tag, NULL);
return tlv_get_uint8(tlvelm, value);
}