summaryrefslogtreecommitdiff
path: root/upb/def.c
diff options
context:
space:
mode:
authorBo Yang <teboring@google.com>2017-06-01 12:34:06 -0700
committerBo Yang <teboring@google.com>2017-06-01 12:34:06 -0700
commit0a9b07ba86cd4aa620d0b061a56d239f40795e39 (patch)
treee06b530e2bea81b3167c54197d14d24c4aa4b6d4 /upb/def.c
parent04fcf0b112deab5bf83673e78e3825155d6fdee1 (diff)
Fix upb load descriptor when no messages defined in prorto.
Diffstat (limited to 'upb/def.c')
-rw-r--r--upb/def.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/upb/def.c b/upb/def.c
index 01bbe5f..ceaced2 100644
--- a/upb/def.c
+++ b/upb/def.c
@@ -2309,6 +2309,9 @@ bool upb_symtab_addfile(upb_symtab *s, upb_filedef *file, upb_status *status) {
bool ret;
n = upb_filedef_defcount(file);
+ if (n == 0) {
+ return true;
+ }
defs = upb_gmalloc(sizeof(*defs) * n);
if (defs == NULL) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback