cvsuser 02/01/29 12:17:40
Modified: . interpreter.c
Log:
CVS missed this.
Revision Changes Path
1.67 +5 -2 parrot/interpreter.c
Index: interpreter.c
===================================================================
RCS file: /cvs/public/parrot/interpreter.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -w -r1.66 -r1.67
--- interpreter.c 29 Jan 2002 14:05:31 -0000 1.66
+++ interpreter.c 29 Jan 2002 20:17:40 -0000 1.67
@@ -1,7 +1,7 @@
/* interpreter.c
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: interpreter.c,v 1.66 2002/01/29 14:05:31 grunblatt Exp $
+ * $Id: interpreter.c,v 1.67 2002/01/29 20:17:40 mrjoltcola Exp $
* Overview:
* The interpreter api handles running the operations
* Data Structure and Algorithms:
@@ -533,7 +533,10 @@
interpreter->op_func_table = interpreter->op_lib->op_func_table;
interpreter->op_info_table = interpreter->op_lib->op_info_table;
- /* In case the I/O system needs something */
+ /* Set I/O data to NULL first or else PIO_init will
+ * assume this interpreter is already initialized.
+ */
+ interpreter->piodata = NULL;
PIO_init(interpreter);
/* Done. Return and be done with it */