less memory usage

Este commit está contenido en:
Chris Cromer 2016-10-17 22:10:03 -03:00
padre 8361f1071a
commit c14e0f88a8
Se han modificado 1 ficheros con 4 adiciones y 1 borrados

Ver fichero

@ -64,7 +64,10 @@ int readfile(CONFIG *config) {
/* not enough memory for more lines, time to allocate more memory */
if (lines == new_max) {
new_max = new_max * 2;
/* faster, but uses more ram while running */
/*new_max = new_max * 2;*/
/* slower, but uses less ram */
new_max = new_max + 100;
char **tmp = realloc(array, new_max * sizeof(*array));
if (!tmp) {
fprintf(stderr, "Reallocación de memoria falló.");