Tagged Questions
The memory-deallocation tag has no wiki summary.
9
votes
4answers
1k views
Can I catch bad pointer errors in C++?
I was wondering if there is a possibility to catch errors like this in C++:
object* p = new object;
delete p;
delete p; //this would cause an error, can I catch this?
Can I check if the pointer ...
8
votes
15answers
1k views
Does it take time to deallocate memory?
I have a C++ program which, during execution, will allocate about 3-8Gb of memory to store a hash table (I use tr1/unordered_map) and various other data structures.
However, at the end of execution, ...
7
votes
3answers
241 views
Why the Destructor in C++ de-allocated memory in reverse order of how they were initialised?
I'm new to C++ and Object Oriented programming. So I wanted to know what is the advantage in de-allocating memory in reverse order to variables?
6
votes
11answers
3k views
“Right” way to deallocate an std::vector object
The first solution is:
std::vector<int> *vec = new std::vector<int>;
assert(vec != NULL);
// ...
delete vec;
An alternative is:
std::vector<int> v;
//...
vec.clear();
...
5
votes
13answers
197 views
Time for deleting pointers
Hei community,
I've got a small question concerning the deletion of pointers.
I am working with pointer-to-pointer matrices of Dimension 1024x1024. Since I am creating them dynamically, I delete the ...
4
votes
2answers
106 views
Why is deallocation slow?
I have a question for which I am unable to find answer on the net...
I have a set declared like this:
set<unsigned int> MySet
I am inserting one million random numbers generated with ...
4
votes
1answer
90 views
C++ question about deleting array of class objects
Its almost common knowledge that the code below correctly frees the memory of 100 integers.
CASE A)
int* ip = new int[100];
delete [] ip;
And I think even for user defined classes it works:
CASE ...
4
votes
6answers
434 views
How to check deallocation of memory
How to check if memory to which pointer p points has been succesfully deallocated?
3
votes
5answers
223 views
Doubly-linked list infinite loop? [closed]
If I were to create a node class, as shown below, and if it were used in a doubly-linked list, would it create an infinite loop upon deconstruction of the doubly linked list? Or would it terminate ...
3
votes
1answer
222 views
removing memory leaks in c++ and GNU scientific library code
double a[] = { 0.11, 0.12, 0.13,
0.21, 0.22, 0.23 };
double b[] = { 1011, 1012,
1021, 1022,
1031, 1032 };
double c[] = { 0.00, 0.00,
...
3
votes
2answers
384 views
Freeing CUDA memory painfully slow
I am allocating some float arrays (pretty large, ie 9,000,000 elements) on the GPU using cudaMalloc((void**)&(storage->data), size * sizeof(float)). In the end of my program, I free this memory ...
2
votes
2answers
77 views
Allocating, Deallocating and memory management on Windows with breakpoints set
I have a C++ application with a very strange phenomenon.
I'm running my application on a large input, and I have many buffers that are allocated and de-allocated during run-time.
For input that it ...
2
votes
5answers
109 views
deallocation of 3 dimensional array
i am creating a three dimensional array like this ...
GLfloat ***tgrid;
//other code in between here
tgrid = new GLfloat**[nx];
for(int i = 0; i < nx; i++)
{
tgrid[i] = new GLfloat*[ny];
...
2
votes
3answers
65 views
Why should I do [object release]; object=nil; when deallocating an object?
I would like to understand why it could be useful to do this (assuming "object" was previously allocated):
[object release];
object=nil;
Thx for helping,
Stephane
2
votes
4answers
106 views
Correct way of erasing a linked list
Suppose, I have a singly linked list and its basic building block is,
struct Node {
Data d;
Node *pNext;
// methods
~Node();
};
The head of the linked list is stored as,
Node *m_Head; // ...
2
votes
1answer
107 views
What are the pros and cons of these different dealloc strategies?
I've seen several different approaches to memory management in iOS as regards releasing properties. After some debate with colleagues, the pros and cons have become muddled in my head.
I'm hoping to ...
2
votes
2answers
230 views
Apparently I don't know how to write a setter
I have a nice object that describes a relatively large data set. I decided to implement some helper functionality in the object.
Basically, instead of using the standard setter for a NSString, I ...
2
votes
4answers
199 views
What is the purpose of the second parameter to std::allocator<T>::deallocate?
In here is declaration of deallocate mem. of allocator class. My question is what for is second argument in this declaration? If this function calls operator delete(_Ptr) this argument is unused so ...
2
votes
4answers
500 views
-[ClassRoster controllerWillChangeContent:]: message sent to deallocated instance
I know these errors are very app-specific and almost always due to over-releasing an object. I just can't spot it and the debugging tips I have read haven't done the trick for me yet.
According to ...
2
votes
6answers
197 views
memory management
This is a memory management question about c++ code.
using namespace std;
#include <iostream>
#include <string.h>
int main()
{
string a="first";
string *b= new string;
*b=a;
...
2
votes
3answers
545 views
Core Data - How to check if a managed object's properties have been deallocated?
I've created a program that uses core data and it works beautifully.
I've since attempted to move all my core data methods calls and fetch routines into a class that is self contained. My main ...
1
vote
3answers
80 views
Temporary object not destroyed correctly?
See this code here:
class test
{
int n;
int *j;
public:
test(int m)
{
n = 12;
j = new int;
cin >> *j;
}
void show()
{
cout << ...
1
vote
2answers
57 views
Object is deallocated - why? where?
Ok, I spent the last 8 hours fighting with it - it just seems beyond me. Here's my complete (relevant) code:
- (void)updateUserDefaults
{
NSMutableDictionary *viewControllerDetails = ...
1
vote
4answers
75 views
Is it possible to partially de-allocate memory from the middle of some object and “split” it?
For example I have an array of 200 integers. What I want to do is convert it to two arrays of 80 integers, removing the 40 integers in between. The goal of course is to use the existing memory block ...
1
vote
1answer
146 views
stuck in infinite loop in deallocating memory
i had asked help on this question here Static member reclaiming memory and recovering from an exception
the program below is to allocate memory using own new operator. I have to throw exception on ...
1
vote
0answers
67 views
how to deallocate stack in ucontext* , linux?
so I am trying to deallocate the context.
Here is how I created context
ucontext* uPtr = new ucontext;
getcontext(uPtr);
char* stack = new char[STACK_SIZE];
uPtr->uc_stack.ss_sp = stack;
...
1
vote
5answers
172 views
Automatically deallocate array?
I'm looking for a way to automatically deallocate an array of wchar_ts ā kind of like an autopointer (I'm not really aquainted with std::auto_ptr, but I think it cannot be used for arrays).
The code ...
1
vote
2answers
237 views
Free memory from a long vector
What I wanted to do is to release the memory used by a vector (say vector<vector<int>>) and I used the swap trick, i.e., v.swap(vector<vector<int>>()).
However, what I ...
1
vote
2answers
46 views
Memory deallocation question
I just want to make sure that I'm properly deallocating memory in my program...
I build a dynamically allocated 2D array in one function ( build_proc_table() ) and return the array to where the ...
1
vote
2answers
166 views
C++ Delete Error — _unlock_fhandle throwing exception?
I have a straightforward problem but I don't understand why I have it.
I would greatly appreciate any insight.
I wrote this code to test that I was correctly creating and using DLLs in Visual Studio ...
1
vote
2answers
854 views
UISearchBar Cancel Button resignFirstResponder message sent to deallocated instance
I have a simple UISearchBar with a cancel button. When I call the following:
- (void)searchBarCancelButtonClicked:(UISearchBar *)sBar {
sBar.text = nil;
[sBar resignFirstResponder];
}
and ...
1
vote
2answers
79 views
java coding standard for garbage memory support
simpleClass sc = new simpleClass();
sc.getObject();
...
simpleClass.java
class simpleClass {
static int st = 0;
public Integer getObject() {
Integer i = 10;
Integer j ...
1
vote
3answers
212 views
iphone -message sent to deallocated instance
hope you can help me with this oneā¦
I saw some crazy behavior so far in Objective C but this one makes me suicidal. well, NOT really...
It's a addressing deallocated object problem.
SCENARIO:
I ...
1
vote
2answers
255 views
Am I responsible for releasing a UIView's gestureRecognizers in dealloc?
I have attached a UIGestureRecognizer to a UIView. Whose responsibility is it to release this during dealloc?
Specifically:
UITapGestureRecognizer *t =
[[UITapGestureRecognizer alloc] ...
1
vote
1answer
274 views
Geolocalization, reverse geocoder, callbacks and object deallocation
In my app, I get the user location and do the reverse geocoder. At the same time the user can write a note.
Sometimes, when I debug and run my app, I obtain this msg:
*** -[MyViewController ...
1
vote
1answer
2k views
Android, out of memory in custom View
I am stress testing an app that consists of a bunch of custom views (3 in fact) that are held in a frameLayout.
Only two are held at a time though. I have view 1, add view two, animate out 1 and ...
1
vote
1answer
424 views
How destroy objects created with MEF
Hi I use MEF and caliburn.micro in WPF app. I would like know how can I destroy instaces created with MEF.
For example simple shell:
[Export(typeof(IShellViewModel))]
public class ...
1
vote
2answers
295 views
Trouble deallocating memory using free()
I have trouble deallocating memory that I allocated using malloc. The program runs fine until it the part where it's supposed to deallocate memory using free. Here the program freezes. So I was ...
1
vote
1answer
164 views
deallocating gsl vectors in structs
Can you explain what's going on with my code here? I'm not sure if I'm using the destructor correctly or not in the struct.
With the destructor in there I get:
function1: 23
function2: 8.86183e-317
* ...
1
vote
2answers
296 views
How to deallocate memory in prefix tree? (ANSI C)
I tried to deallocate memory in dict_free() function, but it doesn't work and I don't no why. Am I missing something? Can't figure out, what's wrong.
Edit:
If I call free() in dict_free() I expect to ...
1
vote
2answers
1k views
QList memory deallocation
I'm trying to free memory after using QList, but it doesn't seem to work properly.
Here's my code:
QList<double> * myList;
myList = new QList<double>;
double myNumber;
cout << ...
0
votes
1answer
41 views
Impact of overreleasing objectsin Cocos2d? - “Message sent to deallocated instance”
I have a cocos2d project. Everything works fine, except when I am replacing a scene.
When replacing the scene, I receive the message "Message sent to deallocated instance" followed by a memory ...
0
votes
0answers
48 views
Unknown coding error in cellForRowAtIndexPath is causing an app crash
I have an app that retrieves a list of tasks from a service call and populates a UITableView with UITableViewCells to display the data.
The first time I launch the app fresh by removing it from the ...
0
votes
1answer
48 views
NSURL getting deallocated almost immediately after creation (Objective C)
In my code I create an NSURL object called fromURL in the header file of my application delegate.
NSURL *fromURL;
Here is when I set it:
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
[openDlg ...
0
votes
0answers
42 views
2D NSMutableArray Potential leak
I've created a 2d NSMutableArray.The outerArray is a global array and i'm releasing the outerArray in dealloc method.When i am trying to analyze the below code snippet, m getting potential leak ...
0
votes
1answer
139 views
[CFDictionary objectForKey:]: message sent to deallocated instance
After searching the web without any insight, I decided to post my problem here hoping someone can explain what's wrong with the following piece of code. I just couldn't implement the singleton design ...
0
votes
4answers
98 views
How to properly define destructor
I am relatively new to C++ (and programming in general) so please forgive me if the question is not perfectly clear immediately.
What I have is a program in which a certain number of objects of a ...
0
votes
0answers
66 views
memory management - Images - please help
I have some problems with my memory management.
I release my outlets as follows:
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
-(void)cleanNib{
[self setView:nil];
}
...
0
votes
4answers
153 views
Deallocate wchar_t* of a vector
I have a vector of wchar_t* like this:
std::vector<wchar_t*> myvector;
and a function that take a string and insert it into the vector
void myfunction(wchar_t* mystring)
{
...
0
votes
6answers
353 views
C++ Using delete on 2D-Vector of a struct with float arrays
here is what I have:
I have a struct like this:
struct foo {
int a,b,c;
float d;
float *array1;
float *array;
};
And now I use this struct for a 8x8 2D-Vector like this:
...