From 8ae71216d49e3874c1d1457df6c2ab7e2aaa993f Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 6 Feb 2006 07:53:42 +0000 Subject: [PATCH] (verify_row): Check table references regardless of target table. Also fixes the previous revision. --- src/lib/common/ef_verify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/common/ef_verify.c b/src/lib/common/ef_verify.c index 83f66251..62bc5424 100644 --- a/src/lib/common/ef_verify.c +++ b/src/lib/common/ef_verify.c @@ -64,7 +64,7 @@ verify_row(int type, int row) n = ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0; j = 0; do { - if (ca[i].ca_table == EF_BAD || ca[i].ca_table == type) + if (ca[i].ca_table == EF_BAD) continue; val.val_type = ca[i].ca_type; val.val_cat = NSC_OFF;