skip to Main Content

Fatal error condition occurred in c:209: allocator != ((void *)0) – aws-sdk-cpp

I'm having an issue after updating: Upload an object to an Amazon S3 bucket using an AWS SDK:(https://docs.aws.amazon.com/AmazonS3/latest/userguide/example_s3_PutObject_section.html) int main(int, char **) { Aws::SDKOptions options; classB::initAwsApi(options); while (true) { //... if (threadApi.joinable()) threadApi.join(); threadApi = std::thread(request, &connection, &headers); std::this_thread::sleep_for(std::chrono::seconds(5)); //…

VIEW QUESTION

AWS C++ Lambda – segmentation fault

I have successfully installed an AWS CLI on WSL. In addition I did follow these instructions: https://aws.amazon.com/blogs/compute/introducing-the-c-lambda-runtime/ Now, the first example works and when I run a testcase all is functioning properly and the test succeeds. However, when I run…

VIEW QUESTION
Back To Top
Search