Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
c02fe8d2
Commit
c02fe8d2
authored
Jul 15, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deps: update pcre to 8.45
parent
2b55e59f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
12 deletions
+15
-12
deps/pcre/LICENCE
+5
-5
deps/pcre/pcre.h
+2
-2
deps/pcre/pcre_compile.c
+6
-3
deps/pcre/pcre_exec.c
+2
-2
No files found.
deps/pcre/LICENCE
View file @
c02fe8d2
...
...
@@ -19,13 +19,13 @@ THE BASIC LIBRARY FUNCTIONS
---------------------------
Written by: Philip Hazel
Email local part:
ph10
Email domain:
cam.ac.uk
Email local part:
Philip.Hazel
Email domain:
gmail.com
University of Cambridge Computing Service,
Cambridge, England.
Copyright (c) 1997-202
0
University of Cambridge
Copyright (c) 1997-202
1
University of Cambridge
All rights reserved.
...
...
@@ -36,7 +36,7 @@ Written by: Zoltan Herczeg
Email local part: hzmester
Email domain: freemail.hu
Copyright(c) 2010-202
0
Zoltan Herczeg
Copyright(c) 2010-202
1
Zoltan Herczeg
All rights reserved.
...
...
@@ -47,7 +47,7 @@ Written by: Zoltan Herczeg
Email local part: hzmester
Email domain: freemail.hu
Copyright(c) 2009-202
0
Zoltan Herczeg
Copyright(c) 2009-202
1
Zoltan Herczeg
All rights reserved.
...
...
deps/pcre/pcre.h
View file @
c02fe8d2
...
...
@@ -42,9 +42,9 @@ POSSIBILITY OF SUCH DAMAGE.
/* The current PCRE version information. */
#define PCRE_MAJOR 8
#define PCRE_MINOR 4
4
#define PCRE_MINOR 4
5
#define PCRE_PRERELEASE
#define PCRE_DATE 202
0-02-12
#define PCRE_DATE 202
1-06-15
#define PCRE_EXP_DECL extern
...
...
deps/pcre/pcre_compile.c
View file @
c02fe8d2
...
...
@@ -6,7 +6,7 @@
and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
Copyright (c) 1997-202
0
University of Cambridge
Copyright (c) 1997-202
1
University of Cambridge
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
...
...
@@ -9104,6 +9104,8 @@ pcre_uchar cworkspace[COMPILE_WORK_SIZE];
similar way to cworkspace, it can be expanded using malloc() if necessary. */
named_group
named_groups
[
NAMED_GROUP_LIST_SIZE
];
cd
->
named_groups
=
named_groups
;
cd
->
named_group_list_size
=
NAMED_GROUP_LIST_SIZE
;
/* Set this early so that early errors get offset 0. */
...
...
@@ -9377,8 +9379,6 @@ cd->hwm = cworkspace;
cd
->
iscondassert
=
FALSE
;
cd
->
start_workspace
=
cworkspace
;
cd
->
workspace_size
=
COMPILE_WORK_SIZE
;
cd
->
named_groups
=
named_groups
;
cd
->
named_group_list_size
=
NAMED_GROUP_LIST_SIZE
;
cd
->
start_pattern
=
(
const
pcre_uchar
*
)
pattern
;
cd
->
end_pattern
=
(
const
pcre_uchar
*
)(
pattern
+
STRLEN_UC
((
const
pcre_uchar
*
)
pattern
))
;
cd
->
req_varyopt
=
0
;
...
...
@@ -9489,6 +9489,7 @@ if (cd->names_found > 0)
add_name
(
cd
,
ng
->
name
,
ng
->
length
,
ng
->
number
);
if
(
cd
->
named_group_list_size
>
NAMED_GROUP_LIST_SIZE
)
(
PUBL
(
free
))((
void
*
)
cd
->
named_groups
);
cd
->
named_group_list_size
=
0
;
/* So we don't free it twice */
}
/* Set up a starting, non-extracting bracket, then compile the expression. On
...
...
@@ -9639,6 +9640,8 @@ if (errorcode != 0)
{
(
PUBL
(
free
))(
re
);
PCRE_EARLY_ERROR_RETURN
:
if
(
cd
->
named_group_list_size
>
NAMED_GROUP_LIST_SIZE
)
(
PUBL
(
free
))((
void
*
)
cd
->
named_groups
);
*
erroroffset
=
(
int
)(
ptr
-
(
const
pcre_uchar
*
)
pattern
);
PCRE_EARLY_ERROR_RETURN2
:
*
errorptr
=
find_error_text
(
errorcode
);
...
...
deps/pcre/pcre_exec.c
View file @
c02fe8d2
...
...
@@ -6,7 +6,7 @@
and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
Copyright (c) 1997-20
18
University of Cambridge
Copyright (c) 1997-20
21
University of Cambridge
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
...
...
@@ -758,7 +758,7 @@ for (;;)
md
->
mark
=
NULL
;
/* In case previously set by assertion */
RMATCH
(
eptr
,
ecode
+
PRIV
(
OP_lengths
)[
*
ecode
]
+
ecode
[
1
],
offset_top
,
md
,
eptrb
,
RM55
);
if
((
rrc
==
MATCH_MATCH
||
rrc
==
MATCH_ACCEPT
)
&&
if
((
rrc
==
MATCH_MATCH
||
rrc
==
MATCH_ACCEPT
||
rrc
==
MATCH_KETRPOS
)
&&
md
->
mark
==
NULL
)
md
->
mark
=
ecode
+
2
;
/* A return of MATCH_SKIP_ARG means that matching failed at SKIP with an
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment