Fix upb load descriptor when no messages defined in prorto. (#3080)

This commit is contained in:
Paul Yang 2017-05-11 13:56:05 -07:00 committed by GitHub
parent 22319315df
commit de6ae7d4eb

View file

@ -2290,6 +2290,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) {