]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/registros.c
hago un pequeño fix para que ande un poco mejor cuando bloque < reg
[z.facultad/75.06/emufs.git] / emufs_gui / registros.c
index e08df568e0a1453c5ab6c0b20face75f1910c79f..aa9c86758779785bdd2a4fbcdc742a9ff4e8ca95 100644 (file)
@@ -334,10 +334,12 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                } else {
                        cant_header++;
                        offset += curr_size;
                } else {
                        cant_header++;
                        offset += curr_size;
+                       fprintf(stderr, "Sume %lu\n", curr_size);
                }
                }
-       } while (offset < (*size));
+       } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
 
        /* Proceso */
 
        /* Proceso */
+       fprintf(stderr, "Cantidad de headers = %d\n", cant_header);
        salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
        tmp = ptr;
        tmp1 = salida;
        salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
        tmp = ptr;
        tmp1 = salida;
@@ -367,7 +369,9 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
                tmp1 += 10;
                tmp += sizeof(unsigned int);
                sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
                tmp1 += 10;
                tmp += sizeof(unsigned int);
-               j = sizeof(unsigned int);;
+               j = sizeof(unsigned int);
+               PERR("Voy aca");
+               fprintf(stderr, "son %lu\n", curr_size);
                while (j < curr_size) {
                        if (*tmp == '\0') {
                                if (ant == (*tmp))
                while (j < curr_size) {
                        if (*tmp == '\0') {
                                if (ant == (*tmp))
@@ -382,13 +386,14 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
                        tmp1++;
                        j++;
                }
                        tmp1++;
                        j++;
                }
+               PERR("Y hasta todo bien");
                i++;
        }
        /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
        (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
        memset(tmp1, '.', (*size)-(tmp1-salida)); 
        free(ptr);
                i++;
        }
        /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
        (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
        memset(tmp1, '.', (*size)-(tmp1-salida)); 
        free(ptr);
-       salida[*size] = '\0';
+       salida[*size-1] = '\0';
        
        return salida;
 }
        
        return salida;
 }