QemuOpts: Fix qemu_config_parse() to catch file read errors
This commit is contained in:
parent
cf5a65aaaf
commit
ef82516d8f
@ -475,6 +475,10 @@ int qemu_config_parse(FILE *fp, const char *fname)
|
||||
error_report("parse error");
|
||||
goto out;
|
||||
}
|
||||
if (ferror(fp)) {
|
||||
error_report("error reading file");
|
||||
goto out;
|
||||
}
|
||||
res = 0;
|
||||
out:
|
||||
loc_pop(&loc);
|
||||
|
Loading…
Reference in New Issue
Block a user