Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/core/client_object_group_operation.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ client_get_object_group_to_file(oss_client_t *client,
char header_auth[128] = {0};
char header_if_modified_since[64] = {0};
char header_if_unmodified_since[64] = {0};
char header_range[32] = {0};
char header_range[64] = {0};
long start = 0; /**< Range 起始字节位置*/
long length = 0; /**< Range 长度*/
oss_map_t *default_headers = oss_map_new(16);
Expand Down Expand Up @@ -591,7 +591,7 @@ client_get_object_group_to_buffer(oss_client_t *client,
char header_auth[128] = {0};
char header_if_modified_since[64] = {0};
char header_if_unmodified_since[64] = {0};
char header_range[32] = {0};
char header_range[64] = {0};
oss_map_t *default_headers = oss_map_new(16);

/**
Expand Down
6 changes: 3 additions & 3 deletions src/core/client_object_operation.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ client_get_object_to_file(oss_client_t *client,

char header_if_modified_since[64] = {0};
char header_if_unmodified_since[64] = {0};
char header_range[32] = {0};
char header_range[64] = {0};

long start = 0; /**< Range 起始字节位置*/
long length = 0; /**< Range 长度*/
Expand Down Expand Up @@ -867,7 +867,7 @@ client_get_object_to_buffer(oss_client_t *client,

char header_if_modified_since[64] = {0};
char header_if_unmodified_since[64] = {0};
char header_range[32] = {0};
char header_range[64] = {0};

oss_map_t *default_headers = oss_map_new(16);
now = (char *)oss_get_gmt_time();
Expand Down Expand Up @@ -1008,7 +1008,7 @@ client_get_object_to_buffer_2nd(oss_client_t *client,

char header_if_modified_since[64] = {0};
char header_if_unmodified_since[64] = {0};
char header_range[32] = {0};
char header_range[64] = {0};

oss_map_t *default_headers = oss_map_new(16);

Expand Down