From: Alan Kennedy Date: Sun, 27 Jun 2004 02:14:35 +0000 (+0000) Subject: Controlo que exista el file, por ahora solo devuelvo -1 y la aplicacion no hace nada... X-Git-Tag: svn_import~41 X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/commitdiff_plain/4249df7029fe40e0514b547c35e3c81a767d4dcb Controlo que exista el file, por ahora solo devuelvo -1 y la aplicacion no hace nada pero no informa nada tampoco --- diff --git a/src/jacu.c b/src/jacu.c index 18c4424..8b6dcd7 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -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; } -