Merge branch 'master' into update_copyrights

This commit is contained in:
Kim Kulling
2021-02-28 12:18:41 +01:00
committed by GitHub
438 changed files with 57029 additions and 221 deletions

View File

@@ -54,7 +54,7 @@ size_t DecodeBase64(const char *in, size_t inLength, uint8_t *&out) {
}
if (inLength < 4) {
out = 0;
out = nullptr;
return 0;
}

View File

@@ -107,7 +107,6 @@ public:
f(file) {}
~IOStream() {
fclose(f);
f = 0;
}
size_t Read(void *b, size_t sz, size_t n) { return fread(b, sz, n, f); }