Freed some memory that wasn't being freed and disabled some safety
checks
This commit is contained in:
parent
88ed75a56b
commit
274ee7b8b1
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
|||||||
PREFIX=
|
PREFIX=
|
||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-O0 -std=gnu99 -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L \
|
CFLAGS=-O0 -std=gnu99 -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L \
|
||||||
-Wall -Wpedantic -Wno-unknown-pragmas -fsanitize=address -fno-omit-frame-pointer
|
-Wall -Wpedantic -Wno-unknown-pragmas
|
||||||
UNAME := $(shell uname)
|
UNAME := $(shell uname)
|
||||||
ifeq ($(UNAME),Darwin)
|
ifeq ($(UNAME),Darwin)
|
||||||
CFLAGS += -D_DARWIN_C_SOURCE -Weverything -Wno-missing-field-initializers -Wno-padded\
|
CFLAGS += -D_DARWIN_C_SOURCE -Weverything -Wno-missing-field-initializers -Wno-padded\
|
||||||
|
2
ask.c
2
ask.c
@ -121,6 +121,7 @@ static int draw_line(FILE *out, const char *line, const char *patt, int cursor)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (backtrack) fprintf(out, "\033[0m\033[%dD", backtrack);
|
if (backtrack) fprintf(out, "\033[0m\033[%dD", backtrack);
|
||||||
|
free(cache);
|
||||||
return to_start;
|
return to_start;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -292,6 +293,7 @@ static char *get_input(FILE *in, FILE *out, const char *prompt, const char *init
|
|||||||
if (backtrack || prompt[0])
|
if (backtrack || prompt[0])
|
||||||
fprintf(out, "\033[%dD", backtrack + (int)strlen(prompt));
|
fprintf(out, "\033[%dD", backtrack + (int)strlen(prompt));
|
||||||
fputs("\033[0m\033[K", out);
|
fputs("\033[0m\033[K", out);
|
||||||
|
if (picked != buf && buf) free(buf);
|
||||||
return picked;
|
return picked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user