Skip to content

Commit

Permalink
Fix case where broker RPC might not contain authorized operations
Browse files Browse the repository at this point in the history
  • Loading branch information
milindl committed Sep 25, 2023
1 parent 63e0748 commit f6f0a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rdkafka_admin.c
Original file line number Diff line number Diff line change
Expand Up @@ -7586,7 +7586,7 @@ rd_kafka_DescribeConsumerGroupsResponse_parse(rd_kafka_op_t *rko_req,
char *group_id = NULL, *group_state = NULL, *proto_type = NULL,
*proto = NULL, *host = NULL;
rd_kafka_AclOperation_t *operations = NULL;
int operation_cnt = 0;
int operation_cnt = -1;

api_version = rd_kafka_buf_ApiVersion(reply);
if (api_version >= 1) {
Expand Down

0 comments on commit f6f0a62

Please sign in to comment.