File html2text-debian-200_close_files_inside_main_loop.patch of Package html2text
Close every file after processing, not at the end of program. Index: html2text-1.3.2a/html2text.C =================================================================== --- html2text-1.3.2a.orig/html2text.C 2008-07-13 16:13:16.364186789 +0300 +++ html2text-1.3.2a/html2text.C 2008-07-13 16:13:36.175939260 +0300 @@ -376,6 +376,7 @@ ); if (parser.yyparse() != 0) exit(1); + uis.close(); } return 0;