mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-29 05:12:41 +00:00
Fix 3 memleaks in ncurses-related code
This commit is contained in:
parent
c06e54157f
commit
efb39867c7
@ -161,6 +161,10 @@ int ifup_strictness = IFUP_UP;
|
|||||||
extern kvm_t *kd;
|
extern kvm_t *kd;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef BUILD_NCURSES
|
||||||
|
WINDOW* ncurses_screen;
|
||||||
|
#endif
|
||||||
|
|
||||||
int argc_copy;
|
int argc_copy;
|
||||||
char** argv_copy;
|
char** argv_copy;
|
||||||
|
|
||||||
@ -2379,6 +2383,7 @@ void clean_up(void *memtofree1, void* memtofree2)
|
|||||||
#ifdef BUILD_NCURSES
|
#ifdef BUILD_NCURSES
|
||||||
if(output_methods & TO_NCURSES) {
|
if(output_methods & TO_NCURSES) {
|
||||||
endwin();
|
endwin();
|
||||||
|
delwin(ncurses_screen);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
conftree_empty(currentconffile);
|
conftree_empty(currentconffile);
|
||||||
@ -3209,7 +3214,7 @@ char load_config_file(const char *f)
|
|||||||
#ifdef BUILD_NCURSES
|
#ifdef BUILD_NCURSES
|
||||||
CONF("out_to_ncurses") {
|
CONF("out_to_ncurses") {
|
||||||
if(string_to_bool(value)) {
|
if(string_to_bool(value)) {
|
||||||
initscr();
|
ncurses_screen = initscr();
|
||||||
start_color();
|
start_color();
|
||||||
output_methods |= TO_NCURSES;
|
output_methods |= TO_NCURSES;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user