aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/debug.c b/debug.c
index 357ce725..8df9ed0d 100644
--- a/debug.c
+++ b/debug.c
@@ -2068,6 +2068,11 @@ find_rule(char *src, long lineno)
{
INSTRUCTION *rp;
+ /*
+ * FIXME: The check for zero and code that goes with it
+ * are probably fragile. A break with no arguments can
+ * cause this in certain cases. Try to review how this works.
+ */
if (lineno == 0) {
for (rp = rule_list->nexti; rp != NULL; rp = rp->nexti) {
if ((rp - 1)->source_file == src && (rp - 1)->source_line > 0)