]> granicus.if.org Git - onig/commitdiff
refactoring
authorK.Kosako <kosako@sofnec.co.jp>
Mon, 5 Aug 2019 00:38:03 +0000 (09:38 +0900)
committerK.Kosako <kosako@sofnec.co.jp>
Mon, 5 Aug 2019 00:38:03 +0000 (09:38 +0900)
harnesses/encode-harness.c

index b490181ecdecf3484473262c257700be17a0ed70..011e0d2d4c907f012ed2600f74ea23e4eddacc12 100644 (file)
@@ -8,7 +8,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#define DEFAULT_LIMIT 120
+#define PARSE_DEPTH_LIMIT  120
+#define RETRY_LIMIT        120
 typedef unsigned char uint8_t;
 
 static int
@@ -61,8 +62,8 @@ exec(OnigEncoding enc, OnigOptionType options,
   UChar* pattern_end = (UChar* )apattern_end;
 
   onig_initialize(&enc, 1);
-  onig_set_retry_limit_in_match(DEFAULT_LIMIT);
-  onig_set_parse_depth_limit(DEFAULT_LIMIT);
+  onig_set_retry_limit_in_match(RETRY_LIMIT);
+  onig_set_parse_depth_limit(PARSE_DEPTH_LIMIT);
 
   r = onig_new(&reg, pattern, pattern_end,
                options, enc, ONIG_SYNTAX_DEFAULT, &einfo);