diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-17 20:26:06 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-17 20:26:06 +0000 |
commit | 9edbee4c0dc5f961c000febb7fe1fb3cb5e8aa78 (patch) | |
tree | 45b4f0ad5110f7e6d38d7dc2d75272869ee89d85 /plugins/Import | |
parent | db5390efed97b32362f1e2b3ee11bc790e115216 (diff) |
forgotten to zero a memory under structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@11493 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Import')
-rw-r--r-- | plugins/Import/src/import.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Import/src/import.cpp b/plugins/Import/src/import.cpp index e126c87205..f7110b20eb 100644 --- a/plugins/Import/src/import.cpp +++ b/plugins/Import/src/import.cpp @@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define SetProgress(n) SendMessage(hdlgProgress,PROGM_SETPROGRESS,n,0)
-struct AccountMap
+struct AccountMap : public MZeroedObject
{
AccountMap(const char *_src, int _origIdx, const TCHAR *_srcName) :
szSrcAcc(mir_strdup(_src)),
|