WIP: Skip 0-vote commits if multiple reviews have been submitted already

Signed-off-by: Lee Jones <lee@kernel.org>
diff --git a/scripts/cve_review b/scripts/cve_review
index 6fcc712..783ec95 100755
--- a/scripts/cve_review
+++ b/scripts/cve_review
@@ -236,6 +236,7 @@
     cat ${commitfile} | GREP_COLORS="ms=01;32" grep -C99999 --color=always -Pi "${GOODMATCHES}" > ${commitfile0} || true
 
     cat ${commitmsgfile0} | grep -C99999 --color=always -Pi "${BADMATCHES}" > ${commitfile} || true
+    regexhits=$(cat ${commitmsgfile} | grep -Pio "${BADMATCHES}" | wc -l)
 
     if [ ! -s ${commitfile} ]; then
          cat ${commitfile0} > ${commitfile}
@@ -294,6 +295,13 @@
         grep -Fl "${subject}" ${FINALDIR}/* | sed 's!'"${FINALDIR}/"'!  !'
         clipcommitto=$((clipcommitto- ${hits} - 3))
         echo
+    else
+        if [ ${regexhits} == 0 ]; then
+            print_red "No regex hits and no positive reviews"
+            echo "${oneline}" >> ${PROCESSEDFILE}
+            sleep 0.5
+            continue
+        fi
     fi
 
     print_blue "Summary:\n"