Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galene
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
galene
Commits
9533c208
Commit
9533c208
authored
Apr 12, 2021
by
Louis Gesbert
Committed by
Juliusz Chroboczek
Apr 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix index out of range in packetcache
parent
050804b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
packetcache/packetcache.go
packetcache/packetcache.go
+1
-1
No files found.
packetcache/packetcache.go
View file @
9533c208
...
...
@@ -412,7 +412,7 @@ func (cache *Cache) GetAt(seqno uint16, index uint16, result []byte) uint16 {
cache
.
mu
.
Lock
()
defer
cache
.
mu
.
Unlock
()
if
int
(
index
)
>
len
(
cache
.
entries
)
{
if
int
(
index
)
>
=
len
(
cache
.
entries
)
{
return
0
}
if
cache
.
entries
[
index
]
.
seqno
!=
seqno
{
...
...
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