Remove redundant line of code (a typo really).
This commit is contained in:
parent
1379a48d94
commit
346447005a
|
@ -131,6 +131,8 @@ pattern is set up so as to initialize any padding the compiler might have
|
||||||
included. This avoids valgrind warnings when a compiled pattern is copied, in
|
included. This avoids valgrind warnings when a compiled pattern is copied, in
|
||||||
particular when it is serialized.
|
particular when it is serialized.
|
||||||
|
|
||||||
|
24. Remove a redundant line of code left in accidentally a long time ago.
|
||||||
|
|
||||||
|
|
||||||
Version 10.23 14-February-2017
|
Version 10.23 14-February-2017
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
|
@ -7200,7 +7200,6 @@ for (;; pptr++)
|
||||||
|
|
||||||
if (mclength == 1 || req_caseopt == 0)
|
if (mclength == 1 || req_caseopt == 0)
|
||||||
{
|
{
|
||||||
firstcu = mcbuffer[0] | req_caseopt;
|
|
||||||
firstcu = mcbuffer[0];
|
firstcu = mcbuffer[0];
|
||||||
firstcuflags = req_caseopt;
|
firstcuflags = req_caseopt;
|
||||||
if (mclength != 1)
|
if (mclength != 1)
|
||||||
|
|
Loading…
Reference in New Issue