From 643f5ea1e0402d05e71d4f0340ea8f29042b8c79 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Thu, 15 Jul 2010 18:45:20 -0700 Subject: glsl/apps: Handle ftell errors in non-debug builds. --- src/glsl/apps/compile.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/glsl/apps/compile.c') diff --git a/src/glsl/apps/compile.c b/src/glsl/apps/compile.c index 5073b0da82..3aa4fd4d53 100644 --- a/src/glsl/apps/compile.c +++ b/src/glsl/apps/compile.c @@ -82,6 +82,9 @@ main(int argc, fseek(in, 0, SEEK_END); size = ftell(in); assert(size != -1); + if (size == -1) { + return 1; + } fseek(in, 0, SEEK_SET); out = fopen(argv[3], "w"); -- cgit v1.2.3