1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-30 03:26:23 -04:00

Revert "copiousoutput: I'm not sure about this. pclose may hang ELinks for long time,"

I am reverting all copiousoutput support because of bug 917.
This reverts commit 47f3dd0421.
This commit is contained in:
Kalle Olavi Niemitalo 2008-06-15 14:08:04 +03:00 committed by Kalle Olavi Niemitalo
parent 95c2c941eb
commit 1661109a99

View File

@ -392,7 +392,7 @@ close_popen(int fd)
foreach (pop, copiousoutput_data) {
if (pop->fd == fd) {
del_from_list(pop);
fclose(pop->stream);
pclose(pop->stream);
if (pop->filename) {
unlink(pop->filename);
mem_free(pop->filename);