From 413ccaf6b9e44efbee7ddcd7c1abc6c246e10191 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 23 Jul 2009 16:15:18 -0700 Subject: Re-enable checks for set_flags now that upbc emits them. --- src/upb_msg.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/upb_msg.c') diff --git a/src/upb_msg.c b/src/upb_msg.c index bfe8436..f589d3d 100644 --- a/src/upb_msg.c +++ b/src/upb_msg.c @@ -42,9 +42,8 @@ void upb_msg_sortfds(google_protobuf_FieldDescriptorProto **fds, size_t num) bool upb_msg_init(struct upb_msg *m, google_protobuf_DescriptorProto *d, struct upb_string fqname, bool sort) { - /* TODO: more complete validation. - * TODO: re-enable this check when we properly set this flag. */ - //if(!d->set_flags.has.field) return false; + /* TODO: more complete validation. */ + if(!d->set_flags.has.field) return false; upb_inttable_init(&m->fields_by_num, d->field->len, sizeof(struct upb_fieldsbynum_entry)); -- cgit v1.2.3