-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Treat empty AWS environment variables as unset (#493)
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
5 files
Submodule aws-c-cal
updated
2 files
+1 −4 | source/darwin/securityframework_ecc.c | |
+1 −2 | source/windows/bcrypt_ecc.c |
Submodule aws-c-common
updated
12 files
+2 −6 | cmake/AwsCheckHeaders.cmake | |
+15 −0 | include/aws/common/array_list.h | |
+13 −0 | include/aws/common/array_list.inl | |
+1 −0 | include/aws/common/cpuid.h | |
+1 −0 | include/aws/common/error.h | |
+1 −1 | include/aws/common/private/xml_parser_impl.h | |
+16 −31 | include/aws/common/xml_parser.h | |
+15 −0 | source/arch/intel/cpuid.c | |
+3 −0 | source/common.c | |
+71 −122 | source/xml_parser.c | |
+1 −0 | tests/cpuid_test.c | |
+101 −136 | tests/xml_parser_test.c |
Submodule aws-c-s3
updated
19 files
+1 −5 | include/aws/s3/private/s3_list_objects.h | |
+6 −24 | include/aws/s3/private/s3_list_parts.h | |
+5 −6 | include/aws/s3/private/s3_paginator.h | |
+26 −20 | include/aws/s3/private/s3_util.h | |
+6 −7 | samples/s3/s3-cp.c | |
+2 −2 | samples/s3/s3-ls.c | |
+1 −1 | source/s3.c | |
+8 −8 | source/s3_auto_ranged_get.c | |
+21 −18 | source/s3_auto_ranged_put.c | |
+18 −24 | source/s3_copy_object.c | |
+43 −85 | source/s3_list_objects.c | |
+55 −115 | source/s3_list_parts.c | |
+5 −6 | source/s3_meta_request.c | |
+37 −36 | source/s3_paginator.c | |
+82 −105 | source/s3_util.c | |
+1 −1 | tests/CMakeLists.txt | |
+2 −2 | tests/s3_list_objects_tests.c | |
+21 −30 | tests/s3_request_messages_tests.c | |
+41 −43 | tests/s3_util_tests.c |