Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
5answers
538 views

Dangling pointers and double free

After some painful experiences, I understand the problem of dangling pointers and double free. I am seeking proper solutions. aStruct has a number of fields including other arrays. aStruct *A=NULL, ...
1
vote
3answers
110 views

Confusing double free error message/memory leak in iPhone app

EDIT - added .h file I'm having difficulty trying to find the cause of a double free error. Steps taken to solve 1) Used the Zombies tool. Zombies reports that tid is being double freed 2) Set a ...
1
vote
2answers
155 views

Is it possible to ignore an Error 487 (ERROR_INVALID_ADDRESS) for UnMapViewOFFile()?

Good afternoon, We are trying to build a prototype of Memory Mapped File Caching program for use by Windows and Linux 32 bit applications. Every time we run the prototype we get an Error 487(Error ...
1
vote
5answers
652 views

Double Free inside of a destructor upon adding to a vector

Hey, I am working on a drum machine, and am having problems with vectors. Each Sequence has a list of samples, and the samples are ordered in a vector. However, when a sample is push_back on the ...
0
votes
0answers
29 views

When running tests that use bundle injection, how do I force double-free's to be an error?

When running tests (via otool) in an XCode project that uses the legacy ObjC runtime (without the garbage collector), I will sometimes get a double-free that is ignored. While I do get told of this ...
0
votes
2answers
479 views

double free error with pointer to array of mpz_t

I'm currently learning libgmp and to that end I'm writing a small program which find prime factors. My program calls a function which fills an array with a varying amount of mpz_t integers, prime ...
0
votes
6answers
742 views

C memory allocation question

So I have a couple of functions that work with a string type I have created. One of them creates a dynamically allocated sting. The other one takes said string, and extends it. And the last one frees ...