aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>1996-03-12 17:00:40 -0300
committerLuiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>1996-03-12 17:00:40 -0300
commitdf8cf53cc95ed9620c7716bda287d6a602a3168e (patch)
tree4c9b49b5f80d22fb41419b2814f4c5b6bff6a7b5
parent40306b10db342cb0be4144fdd451e1128fe7ec55 (diff)
downloadlua-df8cf53cc95ed9620c7716bda287d6a602a3168e.tar.gz
lua-df8cf53cc95ed9620c7716bda287d6a602a3168e.tar.bz2
lua-df8cf53cc95ed9620c7716bda287d6a602a3168e.zip
removed tf->marked=0;
-rw-r--r--undump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/undump.c b/undump.c
index 26becc99..6c58dff2 100644
--- a/undump.c
+++ b/undump.c
@@ -3,7 +3,7 @@
3** load bytecodes from files 3** load bytecodes from files
4*/ 4*/
5 5
6char* rcs_undump="$Id: undump.c,v 1.11 1996/03/08 21:44:12 lhf Exp lhf $"; 6char* rcs_undump="$Id: undump.c,v 1.12 1996/03/11 22:01:46 lhf Exp lhf $";
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <string.h> 9#include <string.h>
@@ -217,7 +217,6 @@ static void LoadFunction(FILE* D)
217 *p++=c.m.c1; *p++=c.m.c2; *p++=c.m.c3; *p++=c.m.c4; 217 *p++=c.m.c1; *p++=c.m.c2; *p++=c.m.c3; *p++=c.m.c4;
218 lastF=lastF->next=tf; 218 lastF=lastF->next=tf;
219 } 219 }
220 tf->marked=0;
221 tf->code=LoadBlock(tf->size,D); 220 tf->code=LoadBlock(tf->size,D);
222 if (swapword || swapfloat) FixCode(tf->code,tf->code+tf->size); 221 if (swapword || swapfloat) FixCode(tf->code,tf->code+tf->size);
223 while (1) /* unthread */ 222 while (1) /* unthread */