﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
55	emxomfld doesn't delete temporary files	Yuri Dario	bird	"when arg_init() is called, the temporary files is not deleted, so at program exit only the last temporary files is effectively erased.

{{{
Index: emxomfld.c
===================================================================
--- emxomfld.c	(revision 2508)
+++ emxomfld.c	(working copy)
@@ -1160,7 +1163,11 @@
 
 static void arg_init (int rsp)
 {
-  response_fname[0] = '\0';
+  if (response_fname[0] != '\0')
+    {
+      remove (response_fname);
+      response_fname[0] = '\0';
+    }
   command_line[0] = '\0';
   line_len = 0;
   response_flag = rsp;

}}}
"	defect	closed	normal	libc-0.6.1	emx	0.6	normal	fixed		
