Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b23b3a5f
Commit
b23b3a5f
authored
Sep 01, 2019
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some compiler warnings
parent
b0916141
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
pcre/pcre_dfa_exec.c
pcre/pcre_dfa_exec.c
+1
-0
pcre/pcre_exec.c
pcre/pcre_exec.c
+1
-1
pcre/pcregrep.c
pcre/pcregrep.c
+1
-1
No files found.
pcre/pcre_dfa_exec.c
View file @
b23b3a5f
...
@@ -2198,6 +2198,7 @@ for (;;)
...
@@ -2198,6 +2198,7 @@ for (;;)
case
0x2029
:
case
0x2029
:
#endif
/* Not EBCDIC */
#endif
/* Not EBCDIC */
if
((
md
->
moptions
&
PCRE_BSR_ANYCRLF
)
!=
0
)
break
;
if
((
md
->
moptions
&
PCRE_BSR_ANYCRLF
)
!=
0
)
break
;
/* fall through */
case
CHAR_LF
:
case
CHAR_LF
:
ADD_NEW
(
state_offset
+
1
,
0
);
ADD_NEW
(
state_offset
+
1
,
0
);
...
...
pcre/pcre_exec.c
View file @
b23b3a5f
...
@@ -2086,7 +2086,7 @@ for (;;)
...
@@ -2086,7 +2086,7 @@ for (;;)
case
OP_CIRC
:
case
OP_CIRC
:
if
(
md
->
notbol
&&
eptr
==
md
->
start_subject
)
RRETURN
(
MATCH_NOMATCH
);
if
(
md
->
notbol
&&
eptr
==
md
->
start_subject
)
RRETURN
(
MATCH_NOMATCH
);
/* Start of subject assertion */
/*
Fall through.
Start of subject assertion */
case
OP_SOD
:
case
OP_SOD
:
if
(
eptr
!=
md
->
start_subject
)
RRETURN
(
MATCH_NOMATCH
);
if
(
eptr
!=
md
->
start_subject
)
RRETURN
(
MATCH_NOMATCH
);
...
...
pcre/pcregrep.c
View file @
b23b3a5f
...
@@ -2407,7 +2407,7 @@ handle_option(int letter, int options)
...
@@ -2407,7 +2407,7 @@ handle_option(int letter, int options)
switch
(
letter
)
switch
(
letter
)
{
{
case
N_FOFFSETS
:
file_offsets
=
TRUE
;
break
;
case
N_FOFFSETS
:
file_offsets
=
TRUE
;
break
;
case
N_HELP
:
help
();
pcregrep_exit
(
0
);
case
N_HELP
:
help
();
pcregrep_exit
(
0
);
break
;
case
N_LBUFFER
:
line_buffered
=
TRUE
;
break
;
case
N_LBUFFER
:
line_buffered
=
TRUE
;
break
;
case
N_LOFFSETS
:
line_offsets
=
number
=
TRUE
;
break
;
case
N_LOFFSETS
:
line_offsets
=
number
=
TRUE
;
break
;
case
N_NOJIT
:
study_options
&=
~
PCRE_STUDY_JIT_COMPILE
;
break
;
case
N_NOJIT
:
study_options
&=
~
PCRE_STUDY_JIT_COMPILE
;
break
;
...
...
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