Skip to content
New issue

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

Draft | Clang3 #241

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/credentials_provider_sts_web_identity.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ static int s_stswebid_error_xml_on_Error_child(struct aws_xml_node *node, void *
struct aws_byte_cursor node_name = aws_xml_node_get_name(node);
if (aws_byte_cursor_eq_c_str_ignore_case(&node_name, "Code")) {

struct aws_byte_cursor data_cursor = {0};
struct aws_byte_cursor data_cursor = {0, 0};
if (aws_xml_node_as_body(node, &data_cursor)) {
return AWS_OP_ERR;
}
Expand Down
Loading