Skip to content
Merged
Changes from 1 commit
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
Next Next commit
CborDecoder initialize m_lastError in constructor
  • Loading branch information
sbaluja committed Sep 25, 2025
commit eccfb68bc25e479c1e198d4379f2ba27031c83ef
1 change: 1 addition & 0 deletions source/cbor/Cbor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ namespace Aws
*
*****************************************************/
CborDecoder::CborDecoder(ByteCursor src, Crt::Allocator *allocator) noexcept
: m_lastError(AWS_ERROR_SUCCESS)
{
m_decoder = aws_cbor_decoder_new(allocator, src);
}
Expand Down
Loading