Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit core collection
Manage
Activity
Members
Labels
Plan
Issues
33
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Projects
White Rabbit core collection
Commits
292327c2
Commit
292327c2
authored
13 years ago
by
Tomasz Wlostowski
Browse files
Options
Downloads
Patches
Plain Diff
endpoint/ep_rx_bypass_queue: fixed OOB leak when emptying the queue
parent
a71e6fd9
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/wr_endpoint/ep_rx_bypass_queue.vhd
+2
-2
2 additions, 2 deletions
modules/wr_endpoint/ep_rx_bypass_queue.vhd
with
2 additions
and
2 deletions
modules/wr_endpoint/ep_rx_bypass_queue.vhd
+
2
−
2
View file @
292327c2
...
...
@@ -6,7 +6,7 @@
-- Author : Tomasz Włostowski
-- Company : CERN BE-CO-HT
-- Created : 2011-08-10
-- Last update: 2011-10-2
5
-- Last update: 2011-10-2
9
-- Platform : FPGA-generic
-- Standard : VHDL'93
-------------------------------------------------------------------------------
...
...
@@ -147,7 +147,7 @@ begin -- behavioral
end
if
;
end
process
;
dreq_o
<=
dreq_i
and
not
flushing
;
dreq_o
<=
dreq_i
and
not
(
flush_i
or
flushing
)
;
valid_int
<=
(
qfull
and
valid_i
)
or
(
not
qempty
and
flushing
and
valid_mask
);
valid_o
<=
valid_int
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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