diff options
author | Rafael Antognolli <[email protected]> | 2019-07-16 10:00:18 -0700 |
---|---|---|
committer | Rafael Antognolli <[email protected]> | 2019-07-23 17:45:19 +0000 |
commit | 1f2b22a6bd3f75770e2d787c0524cdeebafdcab2 (patch) | |
tree | e233e19069421d32ebb92dbda8f0c04f6c247bb9 /src/intel/common | |
parent | 85996567f5cfe9bf55d364798a2214422b95591c (diff) |
intel/gen_decoder: Fix parsing of small genxml file.
When using gen_spec_load_from path, only abort decoding if the read
length is 0. Previously, we were aborting if finding an EOF, even if
something was read from the file.
Also only kill the decoded file if no commands or structs were found,
and print a message in such case.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/common')
-rw-r--r-- | src/intel/common/gen_decoder.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/intel/common/gen_decoder.c b/src/intel/common/gen_decoder.c index 50ef2c4204f..90b0f97965f 100644 --- a/src/intel/common/gen_decoder.c +++ b/src/intel/common/gen_decoder.c @@ -697,7 +697,7 @@ gen_spec_load_from_path(const struct gen_device_info *devinfo, gen_spec_destroy(ctx.spec); ctx.spec = NULL; goto end; - } else if (feof(input)) + } else if (len == 0 && feof(input)) goto end; if (XML_ParseBuffer(ctx.parser, len, len == 0) == 0) { @@ -719,7 +719,11 @@ gen_spec_load_from_path(const struct gen_device_info *devinfo, free(filename); /* free ctx.spec if genxml is empty */ - if (ctx.spec && _mesa_hash_table_num_entries(ctx.spec->commands) == 0) { + if (ctx.spec && + _mesa_hash_table_num_entries(ctx.spec->commands) == 0 && + _mesa_hash_table_num_entries(ctx.spec->structs) == 0) { + fprintf(stderr, + "Error parsing XML: empty spec.\n"); gen_spec_destroy(ctx.spec); return NULL; } |