Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DNS-Compliance-Testing
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
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
ISC Open Source Projects
DNS-Compliance-Testing
Commits
1403f479
Commit
1403f479
authored
May 10, 2019
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't match on heap ids
parent
bac180fc
Pipeline
#14465
passed with stages
in 2 minutes and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
genreport.c
genreport.c
+2
-2
No files found.
genreport.c
View file @
1403f479
...
...
@@ -1416,7 +1416,7 @@ freeitem(struct workitem * item) {
if
(
LINKED
(
item
,
seqlink
))
UNLINK
(
seq
[
item
->
id
],
item
,
seqlink
);
if
(
item
->
onheap
)
exit
(
1
);
abort
(
);
free
(
item
);
}
...
...
@@ -3875,7 +3875,7 @@ udpread(int fd, int port) {
item
=
NEXT
(
item
,
idlink
);
/* Late response? */
if
(
item
==
NULL
)
if
(
item
==
NULL
||
item
->
onheap
)
return
;
process
(
item
,
buf
,
n
,
port
);
...
...
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