We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following logging line of code segfaults whenever cipherName_ is null (paranoid config -- external IV chaining):
https://github.com/vgough/encfs/blob/master/encfs/FileNode.cpp#L103
bool FileNode::setName(const char *plaintextName_, const char *cipherName_, uint64_t iv, bool setIVFirst) { // Lock _lock( mutex ); VLOG(1) << "calling setIV on " << cipherName_;
Should be changed to:
if (cipherName_) VLOG(1) << "calling setIV on " << cipherName_;
The text was updated successfully, but these errors were encountered:
I've issued a pull request to fix this (#195)
Sorry, something went wrong.
No branches or pull requests
The following logging line of code segfaults whenever cipherName_ is null (paranoid config -- external IV chaining):
https://github.com/vgough/encfs/blob/master/encfs/FileNode.cpp#L103
Should be changed to:
The text was updated successfully, but these errors were encountered: