Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
64854c03
Commit
64854c03
authored
10 years ago
by
Marc Hoersken
Browse files
Options
Downloads
Patches
Plain Diff
tool_urlglob.c: Added braces to clarify the conditions
parent
d8efde07
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tool_urlglob.c
+2
-2
2 additions, 2 deletions
src/tool_urlglob.c
with
2 additions
and
2 deletions
src/tool_urlglob.c
+
2
−
2
View file @
64854c03
...
...
@@ -466,7 +466,7 @@ void glob_cleanup(URLGlob* glob)
int
elem
;
/* the < condition is required since i underflows! */
for
(
i
=
glob
->
size
-
1
;
i
>=
0
&&
i
<
glob
->
size
;
--
i
)
{
for
(
i
=
glob
->
size
-
1
;
(
i
>=
0
)
&&
(
i
<
glob
->
size
)
;
--
i
)
{
if
((
glob
->
pattern
[
i
].
type
==
UPTSet
)
&&
(
glob
->
pattern
[
i
].
content
.
Set
.
elements
))
{
for
(
elem
=
glob
->
pattern
[
i
].
content
.
Set
.
size
-
1
;
...
...
@@ -500,7 +500,7 @@ int glob_next_url(char **globbed, URLGlob *glob)
/* implement a counter over the index ranges of all patterns,
starting with the rightmost pattern */
/* the < condition is required since i underflows! */
for
(
i
=
glob
->
size
-
1
;
carry
&&
i
>=
0
&&
(
i
<
glob
->
size
);
--
i
)
{
for
(
i
=
glob
->
size
-
1
;
carry
&&
(
i
>=
0
)
&&
(
i
<
glob
->
size
);
--
i
)
{
carry
=
FALSE
;
pat
=
&
glob
->
pattern
[
i
];
switch
(
pat
->
type
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment