From 23519a9de259c5f8c837421330c9a05912b4e8e6 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sun, 25 Sep 2016 16:49:50 +0100 Subject: [PATCH] nir/spirv: add some error checking to open() CovID: 1373369 Signed-off-by: Eric Engestrom Reviewed-by: Jason Ekstrand --- src/compiler/spirv/spirv2nir.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/compiler/spirv/spirv2nir.c b/src/compiler/spirv/spirv2nir.c index c837186bdfc..d151c2cc828 100644 --- a/src/compiler/spirv/spirv2nir.c +++ b/src/compiler/spirv/spirv2nir.c @@ -37,10 +37,17 @@ #include #include #include +#include int main(int argc, char **argv) { int fd = open(argv[1], O_RDONLY); + if (fd < 0) + { + fprintf(stderr, "Failed to open %s\n", argv[1]); + return 1; + } + off_t len = lseek(fd, 0, SEEK_END); assert(len % 4 == 0); @@ -52,4 +59,6 @@ int main(int argc, char **argv) nir_function *func = spirv_to_nir(map, word_count, NULL, 0, MESA_SHADER_FRAGMENT, "main", NULL); nir_print_shader(func->shader, stderr); + + return 0; } -- 2.30.2