diff options
Diffstat (limited to 'plugins/CryptoPP/base64.cpp')
-rw-r--r-- | plugins/CryptoPP/base64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CryptoPP/base64.cpp b/plugins/CryptoPP/base64.cpp index f639799b92..70c3d672c7 100644 --- a/plugins/CryptoPP/base64.cpp +++ b/plugins/CryptoPP/base64.cpp @@ -75,7 +75,7 @@ char *base64decode(const char *inBuffer, int *count) { if(delta > 3)
c3 = decode64(inBuffer[srcIndex++]);
}
- if((c0 | c1 | c2 | c3) == BERR) {
+ if ((c0 | c1 | c2 | c3) == BERR) {
free(outBuffer);
return(NULL);
}
|