Fix off by one bug in Intern_Block.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 29 Jul 1987 08:24:27 +0000 (08:24 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 29 Jul 1987 08:24:27 +0000 (08:24 +0000)
v7/src/microcode/fasload.c

index 10ec9be0494c01b36fed38bbb80b63c110fdfb55..42d678c357f0a8c5e0aa04d80b70c2b04e9aad1b 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/fasload.c,v 9.28 1987/07/07 21:02:46 cph Rel $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/fasload.c,v 9.29 1987/07/29 08:24:27 jinx Exp $
 
    The "fast loader" which reads in and relocates binary files and then
    interns symbols.  It is called with one argument: the (character
@@ -285,7 +285,7 @@ Intern_Block(Next_Pointer, Stop_At)
   if (Reloc_Debug)
     printf("Interning a block.\n");
 
-  while (Next_Pointer <= Stop_At)      /* BBN has < for <= */
+  while (Next_Pointer < Stop_At)
   {
     switch (Type_Code(*Next_Pointer))
     { case TC_MANIFEST_NM_VECTOR: