]> git.llucax.com Git - z.facultad/75.06/jacu.git/commitdiff
Controlo que exista el file, por ahora solo devuelvo -1 y la aplicacion no hace nada...
authorAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 27 Jun 2004 02:14:35 +0000 (02:14 +0000)
committerAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 27 Jun 2004 02:14:35 +0000 (02:14 +0000)
src/jacu.c

index 18c442445333eb1cd4935bcc1b5c6db308f64b34..8b6dcd7d84b948a1e063f35b2351c4b55f44a7f4 100644 (file)
@@ -147,7 +147,7 @@ int comprimir(char *src, char *dst, Uint32 pagesize, Uint32 volumesize, t_Flags
        bs = bs_create(pagesize);
 
        /* Abrimos el archivo a comprimir y encodeamos bloques */
-       fp = fopen(src, "rb");
+       if ((fp = fopen(src, "rb")) == NULL) return 1;
 
        /* Guardamos el pagesize como header (huffencoded) */
        shuff_scanfreq_chunk(shuff,(char*)&pagesize,sizeof(Uint32));
@@ -311,4 +311,3 @@ int descomprimir(char *src, char *dst)
        free(shuff);
        return 0;
 }
-