473,774 Members | 2,182 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Memory leak

All I'm doing is going through the webpage and analyzing the data,
here's the outline of the code:

in OnDocumentCompl ete(LPCTSTR lpszURL)
{
IDispatch *pDispatch = GetHtmlDocument ();
IHTMLDocument2 *pDoc;
IHTMLElement *pBody;
BSTR str;

pDispatch->QueryInterface (IID_IHTMLDocum ent2,(void**)&p Doc);
pDispatch->Release();

pDoc->get_body((IHTM LElement **)&pBody);
pDoc->Release();

pBody->get_innerHTML( &str);
pBody->Release();

//---------------------------
// Analyze the str using wcsstr, Navigate2 depending on the results.
//---------------------------

SysFreeString(s tr);

CHtmlView::OnDo cumentComplete( lpszURL);
}

The above results in a memory leak so what am I doing wrong?

I've tried calling CHtmlView::OnDo cumentComplete( lpszURL) before I do
everything else and calling SysFreeString before doing Navigate2..
Can't think of anything else..:(

Aug 30 '06 #1
6 2441
Hi eduard!
All I'm doing is going through the webpage and analyzing the data,
here's the outline of the code:

in OnDocumentCompl ete(LPCTSTR lpszURL)
{
IDispatch *pDispatch = GetHtmlDocument ();
IHTMLDocument2 *pDoc;
IHTMLElement *pBody;
BSTR str;

pDispatch->QueryInterface (IID_IHTMLDocum ent2,(void**)&p Doc);
pDispatch->Release();

pDoc->get_body((IHTM LElement **)&pBody);
pDoc->Release();

pBody->get_innerHTML( &str);
pBody->Release();

//---------------------------
// Analyze the str using wcsstr, Navigate2 depending on the results.
//---------------------------

SysFreeString(s tr);

CHtmlView::OnDo cumentComplete( lpszURL);
}

The above results in a memory leak so what am I doing wrong?
HOW do you detect the memory leak?
Also be aware, that COM uses some "intelligen t string pooling", so
"SysFreeStr ing" does not necessarily release the memory!

Greetings
Jochen
Aug 31 '06 #2
Thanks for reply.

Well, using the obvious way - task manager (it can grow relatively
fast).. Or crt dumping.

So any way of checking whether SysFreeString releases the memory or
not? And also any ways of making it release the memory (or going around
that problem..:-\)?

Aug 31 '06 #3
Thanks for reply.

Well, using the obvious way - task manager (it can grow relatively
fast).. Or crt dumping.

So any way of checking whether SysFreeString releases the memory or
not? And also any ways of making it release the memory (or going around
that problem..:-\)?

Aug 31 '06 #4
Hi eduard!
Well, using the obvious way - task manager (it can grow relatively
fast).. Or crt dumping.
CRT-Dumping does not show any COM-Leaks!

And in task manager you have hopefully looked at "VM Size" and *not* at
"Memory usage"!

For leak findung you can use UMDH or my leakfinder:
http://www.codeproject.com/tools/leakfinder.asp

Greetings
Jochen
Sep 1 '06 #5
Thanks, I'll check it out.

In task manager - yes, both actually.

Actually it seems to me that it leaks regardless of the code, i.e. just
the CHtmlWindow on its own. After a few hundred clicks it already
increases by ~40K (browsing the same pages btw, IE 7).

Jochen Kalmbach [MVP] wrote:
Hi eduard!
Well, using the obvious way - task manager (it can grow relatively
fast).. Or crt dumping.

CRT-Dumping does not show any COM-Leaks!

And in task manager you have hopefully looked at "VM Size" and *not* at
"Memory usage"!

For leak findung you can use UMDH or my leakfinder:
http://www.codeproject.com/tools/leakfinder.asp

Greetings
Jochen
Sep 1 '06 #6
*CHtmlView

Sep 1 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
3414
by: ranjeet.gupta | last post by:
Dear All Is the Root Cause of the Memory corruption is the Memory leak, ?? suppose If in the code there is Memory leak, Do this may lead to the Memory Corruption while executing the program ? In nut shell, what is/are the realtion/s between the Memory Leak and Memory Corruption. Juts Theoritical Assumtion below:
17
4814
by: José Joye | last post by:
Hi, I have implemented a Service that is responsible for getting messages from a MS MQ located on a remote machine. I'm getting memory leak from time to time (???). In some situation, it is easier to reproduce (e.g.: remote machine not available). After about 1 day, I get a usage of 300MB of memory. I have used .NET Memory Profiler tool to try to see where the leak is located. For all the leaky instances, I can see the following (I...
4
6093
by: Don Nell | last post by:
Hello Why is there a memory leak when this code is executed. for(;;) { ManagementScope scope = new ManagementScope(); scope.Options.Username="username"; scope.Options.Password="password"; scope.Path.Path=@"\\pc\root\cimv2";
20
8119
by: jeevankodali | last post by:
Hi I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex matches are called within a loop (like if or for). E.g. for(int i = 0; i < 10; i++) { Regex r = new Regex();
23
4570
by: James | last post by:
The following code will create memory leaks!!! using System; using System.Diagnostics; using System.Data; using System.Data.SqlClient; namespace MemoryLeak
8
8554
by: Adrian | last post by:
Hi I have a JS program that runs localy (under IE6 only) on a PC but it has a memory leak (probably the known MS one!) What applications are there that I could use to look at the memory usage of each object within my JS app to help locate my problem? Thanks
7
6936
by: Salvador | last post by:
Hi, I am using WMI to gather information about different computers (using win2K and win 2K3), checking common classes and also WMI load balance. My application runs every 1 minute and reports the status of the machines. Upon we follow the .NET object lifetime recommendations the application is constantly consuming more memory! The problem is on the ManagementObjectSearch, upon we Dispose the object it seems that is not releasing the...
3
5327
by: Jim Land | last post by:
Jack Slocum claims here http://www.jackslocum.com/yui/2006/10/02/3-easy-steps-to-avoid-javascript- memory-leaks/ that "almost every site you visit that uses JavaScript is leaking memory". Anybody know anything about this? Does *Javascript* leak memeory, or does the *browser* leak memory?
7
15716
by: Ragnar Agustsson | last post by:
Hi all I have been wandering about the best way to sandbox memory leaks in 3rd party libraries when using them from the .Net framework. I have a 3rd party library, written in C++, that leaks a lot of memory but I still had to use it. 1. After using DLLImport and seeing the memory leak I tried to load and
22
9364
by: Peter | last post by:
I am using VS2008. I have a Windows Service application which creates Crystal Reports. This is a multi theaded application which can run several reports at one time. My problem - there is a memory leak someplace. I can not detect the memory leak by running several reports by hand, but when I run tha app as a servrice and process few hundred reports there is significant memory leak. The application can consume over 1GB of memory where it...
0
9621
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10267
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10040
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9914
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8939
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7463
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6717
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5484
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.