We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning related to strncpy is observed in the core_http_client.c file at the below line of code. Attached is the warning snapshot :
Line of code:
( void ) strncpy( rangeValueBuffer, HTTP_RANGE_REQUEST_HEADER_VALUE_PREFIX, HTTP_RANGE_REQUEST_HEADER_VALUE_PREFIX_LEN );
Note: A similar issue was created in the past for which "strncpy" was replaced with "memcpy" as a fix. Attaching the link to that issue below. #133
The text was updated successfully, but these errors were encountered:
resolved. But the fix triggers a MISRA rule 7.4 violation. We will be looking at further changes in the future.
Sorry, something went wrong.
No branches or pull requests
Warning related to strncpy is observed in the core_http_client.c file at the below line of code. Attached is the warning snapshot :
Line of code:
( void ) strncpy( rangeValueBuffer,
HTTP_RANGE_REQUEST_HEADER_VALUE_PREFIX,
HTTP_RANGE_REQUEST_HEADER_VALUE_PREFIX_LEN );
Note: A similar issue was created in the past for which "strncpy" was replaced with "memcpy" as a fix. Attaching the link to that issue below.
#133
The text was updated successfully, but these errors were encountered: