diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-23 15:10:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-23 15:10:09 +0000 |
commit | c0dc4dcad95f8d8e95986c61514544b52387408a (patch) | |
tree | 6646cc5d571b34cd9731178de1461f2e147fd253 /src/modules/database/database.cpp | |
parent | 9fc5ea1dd35c7115d34f9a1372ab4d2e6d966002 (diff) |
dbx_mmap to verify password before checking file
git-svn-id: http://svn.miranda-ng.org/main/trunk@7835 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/database/database.cpp')
-rw-r--r-- | src/modules/database/database.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/database/database.cpp b/src/modules/database/database.cpp index 21a958ecd4..2e2adf9b50 100644 --- a/src/modules/database/database.cpp +++ b/src/modules/database/database.cpp @@ -32,6 +32,8 @@ TCHAR g_profileDir[MAX_PATH], g_profileName[MAX_PATH], g_shortProfileName[MAX_PA TCHAR* g_defaultProfile;
void EnsureCheckerLoaded(bool);
+void LoadDatabaseServices();
+
bool fileExist(TCHAR* fname)
{
if (*fname == 0)
@@ -437,6 +439,8 @@ int LoadDatabaseModule(void) _tchdir(szProfile);
szProfile[0] = 0;
+ LoadDatabaseServices();
+
// find out which profile to load
if (!getProfile(szProfile, SIZEOF(szProfile)))
return 1;
|