We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c575aec commit c9e3848Copy full SHA for c9e3848
src/crypto/crypto_util.cc
@@ -237,7 +237,7 @@ ByteSource& ByteSource::operator=(ByteSource&& other) noexcept {
237
238
std::unique_ptr<BackingStore> ByteSource::ReleaseToBackingStore() {
239
// It's ok for allocated_data_ to be nullptr but
240
- // only if size_ is not zero.
+ // only if size_ is zero.
241
CHECK_IMPLIES(size_ > 0, allocated_data_ != nullptr);
242
std::unique_ptr<BackingStore> ptr = ArrayBuffer::NewBackingStore(
243
allocated_data_,
0 commit comments