summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-07-23 16:15:18 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-07-23 16:15:18 -0700
commit413ccaf6b9e44efbee7ddcd7c1abc6c246e10191 (patch)
tree008ab17d65b71b606f03641c72222cc935593fcf /src
parentc7154e0fb410f92ec32a211f392df7b167ed17f8 (diff)
Re-enable checks for set_flags now that upbc emits them.
Diffstat (limited to 'src')
-rw-r--r--src/upb_context.c7
-rw-r--r--src/upb_msg.c5
2 files changed, 4 insertions, 8 deletions
diff --git a/src/upb_context.c b/src/upb_context.c
index 657870f..00b62cc 100644
--- a/src/upb_context.c
+++ b/src/upb_context.c
@@ -28,7 +28,6 @@ bool upb_context_init(struct upb_context *c)
upb_strtable_init(&c->psymtab, 16, sizeof(struct upb_symtab_entry));
/* Add all the types in descriptor.proto so we can parse descriptors. */
if(!addfd(&c->psymtab, &c->symtab, upb_file_descriptor_set->file->elements[0], false)) {
- //if(!addfd(&c->psymtab, &c->symtab, &google_protobuf_filedescriptor, false)) {
assert(false);
return false; /* Indicates that upb is buggy or corrupt. */
}
@@ -149,8 +148,7 @@ static bool insert_enum(struct upb_strtable *t,
google_protobuf_EnumDescriptorProto *ed,
struct upb_string *base)
{
- // TODO: re-enable when compiler sets this flag
- //if(!ed->set_flags.has.name) return false;
+ if(!ed->set_flags.has.name) return false;
/* We own this and must free it on destruct. */
struct upb_string fqname = join(base, ed->name);
@@ -175,8 +173,7 @@ static bool insert_message(struct upb_strtable *t,
google_protobuf_DescriptorProto *d,
struct upb_string *base, bool sort)
{
- /* TODO: re-enable when compiler sets this flag. */
- //if(!d->set_flags.has.name) return false;
+ if(!d->set_flags.has.name) return false;
/* We own this and must free it on destruct. */
struct upb_string fqname = join(base, d->name);
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));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback