Skip to content

Commit

Permalink
Fix a bunch of places we forget to aws_raise_error()
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Feb 9, 2024
1 parent 6c7764e commit b605363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/endpoints_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ int aws_byte_buf_init_from_normalized_uri_path(

on_error:
aws_byte_buf_clean_up(out_normalized_path);
return AWS_ERROR_SDKUTILS_ENDPOINTS_RESOLVE_FAILED;
return aws_raise_error(AWS_ERROR_SDKUTILS_ENDPOINTS_RESOLVE_FAILED);
}

struct aws_string *aws_string_new_from_json(struct aws_allocator *allocator, const struct aws_json_value *value) {
Expand Down

0 comments on commit b605363

Please sign in to comment.