[svn:parrot] r40339 - trunk/src

NotFound at svn.parrot.org NotFound at svn.parrot.org
Thu Jul 30 14:15:17 UTC 2009


Author: NotFound
Date: Thu Jul 30 14:15:16 2009
New Revision: 40339
URL: https://trac.parrot.org/parrot/changeset/40339

Log:
[debugger] repair source loader

Modified:
   trunk/src/debug.c

Modified: trunk/src/debug.c
==============================================================================
--- trunk/src/debug.c	Thu Jul 30 12:18:24 2009	(r40338)
+++ trunk/src/debug.c	Thu Jul 30 14:15:16 2009	(r40339)
@@ -3090,7 +3090,7 @@
 
                 /* don't walk off the end of the program into neverland */
                 if (pc >= interp->code->base.data + interp->code->base.size)
-                    return;
+                    break;
             }
 
             newline->number      = pline->number + 1;


More information about the parrot-commits mailing list