We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cdc215 commit b93bf17Copy full SHA for b93bf17
Microsoft.WindowsAzure.Storage/src/cloud_blob.cpp
@@ -636,7 +636,7 @@ namespace azure { namespace storage {
636
{
637
throw storage_exception(protocol::error_md5_mismatch);
638
}
639
- if (!download_info->m_response_crc64.empty() && !descriptor.content_checksum().is_crc64() && download_info->m_response_crc64 != descriptor.content_checksum().crc64())
+ if (!download_info->m_response_crc64.empty() && descriptor.content_checksum().is_crc64() && download_info->m_response_crc64 != descriptor.content_checksum().crc64())
640
641
throw storage_exception(protocol::error_crc64_mismatch);
642
0 commit comments