diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-30 16:17:46 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-30 16:17:46 +0000 |
commit | 7dad3543a2b848f6547b291f812c9643dc0b85f2 (patch) | |
tree | 1054ad62ecba19750bb4531f34e9d033ac1b7244 /protocols | |
parent | 008fe34954b0bda8fd3487a9658c14581ecd813a (diff) |
Variables moved to mir_* memory allocation routines
git-svn-id: http://svn.miranda-ng.org/main/trunk@696 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/MSN/msn_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MSN/msn_proto.h b/protocols/MSN/msn_proto.h index 8f6ddfbfd4..baf43545de 100644 --- a/protocols/MSN/msn_proto.h +++ b/protocols/MSN/msn_proto.h @@ -34,7 +34,7 @@ struct CMsnProto : public PROTO_INTERFACE ~CMsnProto();
__inline void* operator new(size_t size)
- { return calloc(1, size);
+ { return mir_calloc(1, size);
}
__inline void operator delete(void* p)
{ free(p);
|