Minor tidy.
This commit is contained in:
parent
3efb5641ee
commit
70daa788a5
|
@ -281,6 +281,9 @@ Now such patterns are no longer completely auto-possessified.
|
||||||
|
|
||||||
44. Added a new Windows script RunGrepTest.bat, courtesy of Jason Hood.
|
44. Added a new Windows script RunGrepTest.bat, courtesy of Jason Hood.
|
||||||
|
|
||||||
|
45. Minor cosmetic fix to pcre2test: move a variable that is not used under
|
||||||
|
Windows into the "not Windows" code.
|
||||||
|
|
||||||
|
|
||||||
Version 10.22 29-July-2016
|
Version 10.22 29-July-2016
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
|
@ -7293,7 +7293,6 @@ main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
uint32_t yield = 0;
|
uint32_t yield = 0;
|
||||||
uint32_t op = 1;
|
uint32_t op = 1;
|
||||||
uint32_t stack_size;
|
|
||||||
BOOL notdone = TRUE;
|
BOOL notdone = TRUE;
|
||||||
BOOL quiet = FALSE;
|
BOOL quiet = FALSE;
|
||||||
BOOL showtotaltimes = FALSE;
|
BOOL showtotaltimes = FALSE;
|
||||||
|
@ -7426,6 +7425,7 @@ while (argc > 1 && argv[op][0] == '-' && argv[op][1] != 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
#else
|
#else
|
||||||
int rc;
|
int rc;
|
||||||
|
uint32_t stack_size;
|
||||||
struct rlimit rlim;
|
struct rlimit rlim;
|
||||||
if (U32OVERFLOW(uli))
|
if (U32OVERFLOW(uli))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue