From 99f4e18f1f1eab2a61710b9e9ac8da0f259f142c Mon Sep 17 00:00:00 2001
From: Dan Hirsch <thequux@upstandinghackers.com>
Date: Sun, 17 Mar 2013 22:44:30 -0700
Subject: [PATCH] Fixed a bug in RVM_MATCH

---
 src/backends/regex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backends/regex.c b/src/backends/regex.c
index fa695d94..df9a52d7 100644
--- a/src/backends/regex.c
+++ b/src/backends/regex.c
@@ -115,7 +115,7 @@ void* h_rvm_run__m(HAllocator *mm__, HRVMProg *prog, const uint8_t* input, size_
 	  hi = (arg >> 8) & 0xff;
 	  lo = arg & 0xff;
 	  THREAD.ip++;
-	  if (ch < lo && ch > hi)
+	  if (ch < lo || ch > hi)
 	    ipq_top--; // terminate thread
 	  goto next_insn;
 	case RVM_GOTO:
-- 
GitLab