nouveau: honor fread return value in the nouveau_compiler

There is little point of continuing if fread returns zero, as it
indicates that either the file is empty or cannot be read from.
Bail out if fread returns zero after closing the file.

Cc: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Emil Velikov 2014-03-12 16:58:26 +00:00
parent ae7d236172
commit ad4a44ebfc

View file

@ -173,9 +173,9 @@ main(int argc, char *argv[])
return 1;
}
fread(text, 1, sizeof(text), f);
if (ferror(f)) {
if (!fread(text, 1, sizeof(text), f) || ferror(f)) {
_debug_printf("Error reading file '%s'\n", filename);
fclose(f);
return 1;
}
fclose(f);