summaryrefslogtreecommitdiff
path: root/upb
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2017-06-14 15:39:23 -0700
committerGitHub <noreply@github.com>2017-06-14 15:39:23 -0700
commit8389aa29772c86cb961a131e0c81d5b46a48e1b9 (patch)
tree99f0230203625f998802898aad577ddab1bd2dbb /upb
parent82cbdc86acd060269913a36f86f437db41bd740b (diff)
parent0a9b07ba86cd4aa620d0b061a56d239f40795e39 (diff)
Merge pull request #84 from TeBoring/master
Fix upb load descriptor when no messages defined in prorto.
Diffstat (limited to 'upb')
-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