qulogic/libgnt

b5667f5158be
xmlCleanupParser() should not be called like it was being
http://0pointer.de/blog/projects/beware-of-xmlCleanupParser.html
http://git.gnome.org/browse/libxml2/tree/parser.c#n14002

I just removed calls to it, as I suspect it probably shouldn't
be called from a library like libgnt anyway.
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}