Skip to content

Commit

Permalink
remove blank changes
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Aug 11, 2023
1 parent 411323c commit 8a95ecb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions samples/s3/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ set(S3_PROJECT_NAME s3)
add_executable(${S3_PROJECT_NAME} ${S3_SRC})
aws_set_common_properties(${S3_PROJECT_NAME})


target_include_directories(${S3_PROJECT_NAME} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)
Expand Down
1 change: 1 addition & 0 deletions source/s3_default_meta_request.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ struct aws_s3_meta_request *aws_s3_meta_request_default_new(
meta_request_default->content_length = (size_t)content_length;

AWS_LOGF_DEBUG(AWS_LS_S3_META_REQUEST, "id=%p Created new Default Meta Request.", (void *)meta_request_default);

return &meta_request_default->base;
}

Expand Down
2 changes: 2 additions & 0 deletions source/s3_endpoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ struct aws_s3_endpoint *aws_s3_endpoint_new(
}

endpoint->client = options->client;

return endpoint;

error_cleanup:

aws_string_destroy(options->host_name);

aws_mem_release(allocator, endpoint);

return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/s3_data_plane_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ static int s_test_s3_get_object_less_than_part_size(struct aws_allocator *alloca
&tester, &client_config, AWS_S3_TESTER_BIND_CLIENT_REGION | AWS_S3_TESTER_BIND_CLIENT_SIGNING));

struct aws_s3_client *client = aws_s3_client_new(allocator, &client_config);
ASSERT_NOT_NULL(client);

ASSERT_SUCCESS(aws_s3_tester_send_get_object_meta_request(
&tester, client, g_pre_existing_object_1MB, AWS_S3_TESTER_SEND_META_REQUEST_EXPECT_SUCCESS, NULL));

Expand Down

0 comments on commit 8a95ecb

Please sign in to comment.