Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
icon-libraries
libmtime
Commits
0260a8af
Commit
0260a8af
authored
1 month ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
Avoid an out-of-bounds read in the uniq example
parent
253ff439
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!77
Avoid an out-of-bounds read in the uniq example
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/uniq.f90
+24
-6
24 additions, 6 deletions
examples/uniq.f90
with
24 additions
and
6 deletions
examples/uniq.f90
+
24
−
6
View file @
0260a8af
...
...
@@ -201,22 +201,40 @@ CONTAINS
j
=
1
k
=
1
! Handle the first element (we cannot put this into the loop below because
! the compiler might not perform the short-circuit evaluation):
IF
(
i
<=
na
.AND.
j
<=
nb
)
THEN
diff
=
86400000_i8
*
(
InputArray1
(
i
)
%
day
-
InputArray2
(
j
)
%
day
)
+
InputArray1
(
i
)
%
ms
-
InputArray2
(
j
)
%
ms
IF
(
diff
<
0_i8
)
THEN
OutputArray
(
k
)
=
InputArray1
(
i
)
i
=
i
+
1
ELSE
IF
(
diff
>
0_i8
)
THEN
OutputArray
(
k
)
=
InputArray2
(
j
)
j
=
j
+
1
ELSE
OutputArray
(
k
)
=
InputArray1
(
i
)
i
=
i
+
1
j
=
j
+
1
END
IF
k
=
k
+
1
END
IF
DO
WHILE
(
i
<=
na
.AND.
j
<=
nb
)
diff
=
86400000_i8
*
(
InputArray1
(
i
)
%
day
-
InputArray2
(
j
)
%
day
)
+
InputArray1
(
i
)
%
ms
-
InputArray2
(
j
)
%
ms
IF
(
diff
<
0_i8
)
THEN
IF
(
k
==
1
.OR.
((
InputArray1
(
i
)
%
day
/
=
OutputArray
(
k
-
1
)
%
day
)
.OR.
(
InputArray1
(
i
)
%
ms
/
=
OutputArray
(
k
-
1
)
%
ms
))
)
THEN
IF
((
InputArray1
(
i
)
%
day
/
=
OutputArray
(
k
-
1
)
%
day
)
.OR.
(
InputArray1
(
i
)
%
ms
/
=
OutputArray
(
k
-
1
)
%
ms
))
THEN
OutputArray
(
k
)
=
InputArray1
(
i
)
k
=
k
+
1
END
IF
i
=
i
+
1
ELSE
IF
(
diff
>
0_i8
)
THEN
IF
(
k
==
1
.OR.
((
InputArray2
(
j
)
%
day
/
=
OutputArray
(
k
-
1
)
%
day
)
.OR.
(
InputArray2
(
j
)
%
ms
/
=
OutputArray
(
k
-
1
)
%
ms
))
)
THEN
IF
((
InputArray2
(
j
)
%
day
/
=
OutputArray
(
k
-
1
)
%
day
)
.OR.
(
InputArray2
(
j
)
%
ms
/
=
OutputArray
(
k
-
1
)
%
ms
))
THEN
OutputArray
(
k
)
=
InputArray2
(
j
)
k
=
k
+
1
END
IF
j
=
j
+
1
ELSE
IF
(
k
==
1
.OR.
((
InputArray1
(
i
)
%
day
/
=
OutputArray
(
k
-
1
)
%
day
)
.OR.
(
InputArray1
(
i
)
%
ms
/
=
OutputArray
(
k
-
1
)
%
ms
))
)
THEN
IF
((
InputArray1
(
i
)
%
day
/
=
OutputArray
(
k
-
1
)
%
day
)
.OR.
(
InputArray1
(
i
)
%
ms
/
=
OutputArray
(
k
-
1
)
%
ms
))
THEN
OutputArray
(
k
)
=
InputArray1
(
i
)
k
=
k
+
1
END
IF
...
...
@@ -245,9 +263,9 @@ CONTAINS
END
IF
END
DO
!
do
i = 1, k
-
1
!
write
(0,*) OutputArray(i)
!
enddo
!
DO
i = 1, k
-
1
!
WRITE
(0,
*) OutputArray(i)
!
END DO
nsize_OA
=
k
-
1
...
...
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