glsl/apps: Assert that ftell does not return an error.
authorVinson Lee <vlee@vmware.com>
Tue, 23 Feb 2010 07:49:50 +0000 (23:49 -0800)
committerVinson Lee <vlee@vmware.com>
Tue, 23 Feb 2010 07:49:50 +0000 (23:49 -0800)
src/glsl/apps/compile.c
src/glsl/apps/process.c
src/glsl/apps/purify.c
src/glsl/apps/tokenise.c
src/glsl/apps/version.c

index 3b3c083..21c2b76 100644 (file)
@@ -79,6 +79,7 @@ main(int argc,
 
    fseek(in, 0, SEEK_END);
    size = ftell(in);
+   assert(size != -1);
    fseek(in, 0, SEEK_SET);
 
    out = fopen(argv[3], "w");
index e65f35c..c8a1a18 100644 (file)
@@ -58,6 +58,7 @@ main(int argc,
 
    fseek(in, 0, SEEK_END);
    size = ftell(in);
+   assert(size != -1);
    fseek(in, 0, SEEK_SET);
 
    out = fopen(argv[2], "wb");
index 3019e8b..5ab6bae 100644 (file)
@@ -25,6 +25,7 @@
  * 
  **************************************************************************/
 
+#include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -56,6 +57,7 @@ main(int argc,
 
    fseek(in, 0, SEEK_END);
    size = ftell(in);
+   assert(size != -1);
    fseek(in, 0, SEEK_SET);
 
    out = fopen(argv[2], "wb");
index c70c3cc..b4c6d60 100644 (file)
@@ -57,6 +57,7 @@ main(int argc,
 
    fseek(in, 0, SEEK_END);
    size = ftell(in);
+   assert(size != -1);
    fseek(in, 0, SEEK_SET);
 
    out = fopen(argv[2], "wb");
index 0420f97..9820ad9 100644 (file)
@@ -56,6 +56,7 @@ main(int argc,
 
    fseek(in, 0, SEEK_END);
    size = ftell(in);
+   assert(size != -1);
    fseek(in, 0, SEEK_SET);
 
    out = fopen(argv[2], "wb");