]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* BUGFIX : Cuando se usa -a o -f con tipo 2 ahora no se cuelga (falto un if :-)
authorRicardo Markiewicz <gazer.arg@gmail.com>
Sun, 18 Apr 2004 15:18:12 +0000 (15:18 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Sun, 18 Apr 2004 15:18:12 +0000 (15:18 +0000)
emufs_gui/emufs_view.c

index 9f6f226c218392af57d0e1769d412ee83d188522..6d043020f3fb458f63a7e77472858fa20b93e1ee 100644 (file)
@@ -68,8 +68,11 @@ t_Param param_ok(int argc, char *argv[])
                                        if (((n == 1) || (n == 3)) && ((i+2)>=argc))
                                                return BLOQUE_NO_DEFINIDO;
                                        parametros.tipo_arch_art = n;
-                                       parametros.tam_bloque_art = atoi(argv[i+2]);
-                                       if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
+                                       if (n != 2) {
+                                               if ((i+2) >= argc) return NULL_BLOCK_FOUND;
+                                               parametros.tam_bloque_art = atoi(argv[i+2]);
+                                               if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
+                                       }
                                        parametros.xml_art = i;
                                } else {
                                        /* Ops, no hay mas parametros */