Commit 349b58bc authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Fix input validation edge case in group listing operations.

parent 06c70397
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -12,6 +12,9 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Match handlers are now required to implement a signal handler function.
- Log status follow missing users at debug instead of warning level.

### Fixed
- Fix input validation edge case in group listing operations.

## [3.7.0] - 2021-09-28
### Added
- New config options to enforce a single socket per user, and a single match per socket.
+1 −0
Original line number Diff line number Diff line
@@ -852,6 +852,7 @@ func (s *ApiServer) ListGroups(ctx context.Context, in *api.ListGroupsRequest) (
	var open *bool
	openIn := in.GetOpen()
	if openIn != nil {
		open = new(bool)
		*open = openIn.GetValue()
	}