From 574aa18e66fc80974433c2668c74be1f6e809f7e Mon Sep 17 00:00:00 2001 From: Alois Zoitl Date: Wed, 20 Nov 2024 23:18:01 +0100 Subject: [PATCH] Fixed double pointer generation in CIP QOS attribute handling --- source/src/cip/cipqos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/cip/cipqos.c b/source/src/cip/cipqos.c index 8598f9eac..88d47219a 100644 --- a/source/src/cip/cipqos.c +++ b/source/src/cip/cipqos.c @@ -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;