Re: malloc problem in C++
Jason wrote:
"Victor Bazarov" <v.Abazarov@comAcast.net> wrote in message
news:fan3ip$713$1@news.datemas.de...
[...]
First of all, is there any problems using "malloc" in C++? I know
using "new" is preferable, but for now I have to use what is
provided.
No, there are no problems with 'malloc', except that it does not
initialise the memory it allocates.
But it _does_ allocate memory, as in it locks memory on the heap for
that specific pointer?
Sure. If you look at some popular implementations of 'new' and
'new[]', you'll see that internally they use 'malloc', actually.
[..]
The function above gets called just fine 318 times. On the 319th
iteration, when "malloc" is called, it is overwriting part of the
previously defined class (which is global to this function). The
tpFilePointer goes from being NULL to being "1" after the first
malloc, and "2" after the second. (as in, pointing to memory
address
00000002).
<shrug> Impossible to tell what that's due.
Any suggestions on things I could be looking for while debugging?
If 'malloc' somehow overrides (steps onto) some memore you're still
using for some other object, it could be only two things: the heap
is corrupt (your program writes beyond the bounds of a dynamically
allocated object, thus crossing over to memory that doesn't really
belong to it, OR your "part of previously defined class" was somehow
transferred from under your control and it's now part of the heap
that 'malloc' is free to reuse.
What you should do is to get the tool that would allow you to debug
memory allocations and access. Rational Purify, BoundsChecker, come
to mind.
There are no errors until it gets further down in the code, and an
attempt is made to initialize and use that file pointer.
Memory access troubles are the worst, and if you get them under your
control, you're going to be very happy.
Can anyone see any obvious problems with all this that I may have
overlooked? (Besides the obvious problems with global classes and
such.) I apologize if this question didn't make any sense, I'm
happy to provide clarity.
Yes, the obvious problems I've pointed out. The non-obvious are
most likely beyond the posted code.
Besides my typos, everything looks fine? Thanks for your advice,
that's what I needed to know. I am still relatively new to the C++
environment, being an old Delphi programmer, so outside perspective
is always appreciated.
Here is something you might want to consider: do NOT use dynamic
memory allocated directly by you, instead use standard containers.
Switch to using 'std::vector<float>' instead of 'malloc'ed 'float*'.
Easier to debug, for sure.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask