(svn r1628) -Fix: [1107893] script command; log file pointer was not reset to NULL after logging was closed
authordarkvater
Sun, 23 Jan 2005 21:42:29 +0000
changeset 1127 b7eaa0592b30
parent 1126 5d778d55d094
child 1128 d3ffc98b92ad
(svn r1628) -Fix: [1107893] script command; log file pointer was not reset to NULL after logging was closed
console.c
--- a/console.c	Sun Jan 23 21:30:31 2005 +0000
+++ b/console.c	Sun Jan 23 21:42:29 2005 +0000
@@ -284,6 +284,7 @@
 	if (_iconsole_output_file != NULL) {
 		IConsolePrintF(_iconsole_color_default, "file output complete");
 		fclose(_iconsole_output_file);
+		_iconsole_output_file = NULL;
 		return true;
 	}