Skip to content

Commit

Permalink
Fixed double pointer generation in CIP QOS attribute handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Alois Zoitl committed Nov 20, 2024
1 parent 1e99582 commit 574aa18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/src/cip/cipqos.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ int DecodeCipQoSAttribute(void *const data,
CipMessageRouterRequest *const message_router_request,
CipMessageRouterResponse *const message_router_response) {

const EipUint8 **const cip_message = message_router_request->data;
const EipUint8 *const cip_message = message_router_request->data;

int number_of_decoded_bytes = -1;

Expand Down

0 comments on commit 574aa18

Please sign in to comment.