]> git.saurik.com Git - uikittools.git/commitdiff
Reorganize calls to fopen, for assert safety.
authorJay Freeman (saurik) <saurik@saurik.com>
Sat, 8 Oct 2011 19:37:45 +0000 (12:37 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sat, 8 Oct 2011 19:37:45 +0000 (12:37 -0700)
iomfsetgamma.c

index 8f02a4cd756b6739e3de226a06ce362abe8e7106..71159d584662a4300bc6a2a170f6b46f44e20198 100644 (file)
@@ -75,18 +75,19 @@ int main(int argc, char *argv[]) {
 
     FILE *file = fopen("/tmp/.iomfgamma.dat", "r");
     if (file == NULL) {
-        file = fopen("/tmp/.iomfgamma.dat", "wb");
-
         $IOMobileFramebufferGetGammaTable = dlsym(RTLD_DEFAULT, "IOMobileFramebufferGetGammaTable");
-
         _assert($IOMobileFramebufferGetGammaTable != NULL);
         error = $IOMobileFramebufferGetGammaTable(fb, data);
         _assert(error == 0);
 
+        file = fopen("/tmp/.iomfgamma.dat", "wb");
+        _assert(file != NULL);
+
         fwrite(data, 1, sizeof(data), file);
         fclose(file);
 
         file = fopen("/tmp/.iomfgamma.dat", "r");
+        _assert(file != NULL);
     }
 
     fread(data, 1, sizeof(data), file);