diff options
Diffstat (limited to 'src/shared')
| -rw-r--r-- | src/shared/Auth/AuthCrypt.cpp | 2 | ||||
| -rw-r--r-- | src/shared/Database/DBCStores.cpp | 2 | ||||
| -rw-r--r-- | src/shared/revision_nr.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/Auth/AuthCrypt.cpp b/src/shared/Auth/AuthCrypt.cpp index 199e7192537..68a271e3c42 100644 --- a/src/shared/Auth/AuthCrypt.cpp +++ b/src/shared/Auth/AuthCrypt.cpp @@ -66,7 +66,7 @@ void AuthCrypt::SetKey(BigNumber *bn) GenerateKey(key, bn); _key.resize(SHA_DIGEST_LENGTH); std::copy(key, key + SHA_DIGEST_LENGTH, _key.begin()); - delete key; + delete[] key; } AuthCrypt::~AuthCrypt() diff --git a/src/shared/Database/DBCStores.cpp b/src/shared/Database/DBCStores.cpp index cd4a2e5faf0..cf962bbf3e0 100644 --- a/src/shared/Database/DBCStores.cpp +++ b/src/shared/Database/DBCStores.cpp @@ -192,7 +192,7 @@ void LoadDBCStores(const std::string& dataPath) { std::string dbcPath = dataPath+"dbc/"; - const uint32 DBCFilesCount = 66; + const uint32 DBCFilesCount = 69; barGoLink bar( DBCFilesCount ); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 60f75e4853c..0dc131817cc 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7100" + #define REVISION_NR "7111" #endif // __REVISION_NR_H__ |
