Return correct success value from NSS s3fs_md5 (#2543)

This commit is contained in:
Andrew Gaul 2024-10-13 11:58:54 +09:00 committed by GitHub
parent 40f95272be
commit c0219b38d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,7 +193,7 @@ bool s3fs_md5_fd(int fd, off_t start, off_t size, md5_t* result)
PK11_DigestFinal(md5ctx, result->data(), &md5outlen, result->size());
PK11_DestroyContext(md5ctx, PR_TRUE);
return false;
return true;
}
//-------------------------------------------------------------------