BUG: Memory Problems with Simple Mapi

ID: Q169680


The information in this article applies to:
  • Microsoft Exchange Server, versions 5.0, 4.0


SYMPTOMS

When writing an application that uses simple MAPI you may encounter Memory leaks.


CAUSE

Repeated calls to MAPILogoff() within the same application may result in a significant memory leaks. An example would be if a programmer designed an application that needed to periodically poll for new messages. A poorly optimized algorithm would appear like this:


   Do Until Something
   MAPILogon()
   MAPIResolveName()
   MAPIFindNext()
   MAPIFreeBuffer()
   MAPILogoff()
   Sleep()
   Loop 


RESOLUTION

Instead you should Cache the MAPI Session, changing the example to this:


   MAPILogon()
   MAPIResolveName()
   Do Until Something
   MAPIFindNext()
   Sleep()
   Loop
   MAPILogoff() 
You could also use Extended MAPI to avoid this problem.


MORE INFORMATION



Additional query words:

Keywords : SMapiCMC
Version : winnt:4.0,5.0
Platform : winnt
Issue type : kbbug


Last Reviewed: November 8, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.