42 |
correctly handled. The rule now is that both the assertion and what follows |
correctly handled. The rule now is that both the assertion and what follows |
43 |
in the first alternative must satisfy the test. |
in the first alternative must satisfy the test. |
44 |
|
|
45 |
9. If auto-callout was enabled in a pattern with a conditional group whose |
9. If auto-callout was enabled in a pattern with a conditional group whose |
46 |
condition was an assertion, PCRE could crash during matching, both with |
condition was an assertion, PCRE could crash during matching, both with |
47 |
pcre_exec() and pcre_dfa_exec(). |
pcre_exec() and pcre_dfa_exec(). |
48 |
|
|
64 |
17. Implemented support for UTF-8 encoding in EBCDIC environments, a patch |
17. Implemented support for UTF-8 encoding in EBCDIC environments, a patch |
65 |
from Martin Jerabek that uses macro names for all relevant character and |
from Martin Jerabek that uses macro names for all relevant character and |
66 |
string constants. |
string constants. |
67 |
|
|
68 |
18. Added to pcre_internal.h two configuration checks: (a) If both EBCDIC and |
18. Added to pcre_internal.h two configuration checks: (a) If both EBCDIC and |
69 |
SUPPORT_UTF8 are set, give an error; (b) If SUPPORT_UCP is set without |
SUPPORT_UTF8 are set, give an error; (b) If SUPPORT_UCP is set without |
70 |
SUPPORT_UTF8, define SUPPORT_UTF8. The "configure" script handles both of |
SUPPORT_UTF8, define SUPPORT_UTF8. The "configure" script handles both of |
71 |
these, but not everybody uses configure. |
these, but not everybody uses configure. |
72 |
|
|
73 |
19. A conditional group that had only one branch was not being correctly |
19. A conditional group that had only one branch was not being correctly |
74 |
recognized as an item that could match an empty string. This meant that an |
recognized as an item that could match an empty string. This meant that an |
75 |
enclosing group might also not be so recognized, causing infinite looping |
enclosing group might also not be so recognized, causing infinite looping |
76 |
(and probably a segfault) for patterns such as ^"((?(?=[a])[^"])|b)*"$ |
(and probably a segfault) for patterns such as ^"((?(?=[a])[^"])|b)*"$ |
77 |
with the subject "ab", where knowledge that the repeated group can match |
with the subject "ab", where knowledge that the repeated group can match |
78 |
nothing is needed in order to break the loop. |
nothing is needed in order to break the loop. |
79 |
|
|
80 |
20. If a pattern that was compiled with callouts was matched using pcre_dfa_ |
20. If a pattern that was compiled with callouts was matched using pcre_dfa_ |
81 |
exec(), but without supplying a callout function, matching went wrong. |
exec(), but without supplying a callout function, matching went wrong. |
82 |
|
|
83 |
21. If PCRE_ERROR_MATCHLIMIT occurred during a recursion, there was a memory |
21. If PCRE_ERROR_MATCHLIMIT occurred during a recursion, there was a memory |
84 |
leak if the size of the offset vector was greater than 30. When the vector |
leak if the size of the offset vector was greater than 30. When the vector |
85 |
is smaller, the saved offsets during recursion go onto a local stack |
is smaller, the saved offsets during recursion go onto a local stack |
86 |
vector, but for larger vectors malloc() is used. It was failing to free |
vector, but for larger vectors malloc() is used. It was failing to free |
87 |
when the recursion yielded PCRE_ERROR_MATCH_LIMIT (or any other "abnormal" |
when the recursion yielded PCRE_ERROR_MATCH_LIMIT (or any other "abnormal" |
88 |
error, in fact). |
error, in fact). |
89 |
|
|
90 |
22. There was a missing #ifdef SUPPORT_UTF8 round one of the variables in the |
22. There was a missing #ifdef SUPPORT_UTF8 round one of the variables in the |
91 |
heapframe that is used only when UTF-8 support is enabled. This caused no |
heapframe that is used only when UTF-8 support is enabled. This caused no |
92 |
problem, but was untidy. |
problem, but was untidy. |
93 |
|
|
94 |
|
23. Steven Van Ingelgem's patch to CMakeLists.txt to change the name |
95 |
|
CMAKE_BINARY_DIR to PROJECT_BINARY_DIR so that it works when PCRE is |
96 |
|
included within another project. |
97 |
|
|
98 |
|
|
99 |
|
|
100 |
Version 7.8 05-Sep-08 |
Version 7.8 05-Sep-08 |