Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r2c5f0db65f23016a42f3e28160c308336f2b108e -r23d10df370582923174cd5d85731895c13aaab6c --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 2c5f0db65f23016a42f3e28160c308336f2b108e) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 23d10df370582923174cd5d85731895c13aaab6c) @@ -3213,13 +3213,11 @@ *************************************************************************/ void handleTestHDCommunicationStatusOverrideRequest(MESSAGE_T *message) { - TEST_OVERRIDE_PAYLOAD_T payload; BOOL result = FALSE; // verify payload length - if ( sizeof( TEST_OVERRIDE_PAYLOAD_T ) == message->hdr.payloadLen ) + if ( sizeof( BOOL ) == message->hdr.payloadLen ) { - memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_PAYLOAD_T ) ); if ( FALSE == payload.reset ) { result = testSetHDCommunicationStatus();