aboutsummaryrefslogtreecommitdiff
path: root/ports/oniguruma/fix-uwp.patch
blob: 5a2f801d1367d61bb3404facca2920b049076568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
diff --git a/src/regcomp.c b/src/regcomp.c
--- a/src/regcomp.c
+++ b/src/regcomp.c
@@ -3880,7 +3880,7 @@ reduce_string_list(Node* node)
     {
       Node* prev;
       Node* curr;
-      Node* prev_node;
+      Node* prev_node = NULL;
       Node* next_node;
 
       prev = NULL_NODE;
diff --git a/src/regexec.c b/src/regexec.c
index ce498c6..6848c0f 100644
--- a/src/regexec.c
+++ b/src/regexec.c
@@ -4216,7 +4216,7 @@ regset_search_body_position_lead(OnigRegSet* set,
 {
   int r, n, i;
   UChar *s;
-  UChar *low, *high;
+  UChar *low, *high = NULL;
   UChar* sch_range;
   regex_t* reg;
   OnigEncoding enc;