Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
k8s-ingress
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
uplex-varnish
k8s-ingress
Commits
3c6b9916
Commit
3c6b9916
authored
Apr 21, 2020
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a nil derefernce in dataplane getTx().
parent
80c3584d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
dataplane.go
pkg/haproxy/dataplane.go
+1
-5
No files found.
pkg/haproxy/dataplane.go
View file @
3c6b9916
...
@@ -203,11 +203,7 @@ func getBody(resp *http.Response) ([]byte, error) {
...
@@ -203,11 +203,7 @@ func getBody(resp *http.Response) ([]byte, error) {
}
}
func
getTx
(
body
[]
byte
)
(
tx
*
models
.
Transaction
,
err
error
)
{
func
getTx
(
body
[]
byte
)
(
tx
*
models
.
Transaction
,
err
error
)
{
tx
=
&
models
.
Transaction
{
tx
=
&
models
.
Transaction
{}
Version
:
tx
.
Version
,
ID
:
tx
.
ID
,
Status
:
tx
.
Status
,
}
if
err
=
tx
.
UnmarshalBinary
(
body
);
err
!=
nil
{
if
err
=
tx
.
UnmarshalBinary
(
body
);
err
!=
nil
{
err
=
tx
.
Validate
(
fmts
)
err
=
tx
.
Validate
(
fmts
)
}
}
...
...
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