summaryrefslogtreecommitdiffstats
path: root/grub-core/lib/gnulib-patches/fix-unused-value.patch
blob: ba51f1bf223d4219c6bc17dac5b3239f49e2418f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/lib/regexec.c	2020-10-21 14:25:35.310195912 +0000
+++ b/lib/regexec.c	2020-10-21 14:32:07.961765604 +0000
@@ -828,7 +828,11 @@
 		    break;
 		  if (__glibc_unlikely (err != REG_NOMATCH))
 		    goto free_return;
+#ifdef DEBUG
+		  /* Only used for assertion below when DEBUG is set, otherwise
+		     it will be over-written when we loop around.  */
 		  match_last = -1;
+#endif
 		}
 	      else
 		break; /* We found a match.  */