Tagged Questions
-4
votes
1answer
73 views
delete, new [] and “pointer being freed was not allocated” [duplicate]
Search results indicate I'm getting "pointer being freed was not allocated" either because I use delete on objects created by new [] or I forgot to create a copy constructor or because of memory ...
-3
votes
4answers
110 views
Deleting a pointer in c++ : what does `delete p` mean? [closed]
#include <iostream>
#include <cstdio>
using namespace std;
int main(void)
{
int arr[] = {1,4,2,3,5,6};
int *p = arr;
delete p;
for(int i = 0 ; i < 6; i++)
cout ...
4
votes
2answers
67 views
free the memory of: A** mat = new A*[2];
I defined:
A** mat = new A*[2];
and that's it.
how can I delete it?
delete[] mat;
or:
delete[] *mat;
-2
votes
1answer
59 views
C++, how to delete member **object (using delete)
I have an **object (**personnel) as a member inside(composition) another object, I want to free the memory that **personnel points to and point it to another **temp (personnel=temp), without deleteing ...
0
votes
4answers
81 views
Can't delete temporary object
So, I'm resizing and array of objects. I made a temp object but when I don't delete it Valgrind shows memory leaks and an error. Deleting it causes a segfault. Just wondering what Valgrind is ...
0
votes
0answers
70 views
Binary Tree Search - delete a node without child
I have a binary tree search, and i try to remove it's biggest number in this tree. But it has crash while I delete a node without child. Totally don't know why. Here is my code.Please help me figure ...
0
votes
3answers
86 views
destructor of arrays of pointers in structures
I have this structures and dynamically allocated arrays.
I can't use std::vector and std::string, because it is homework.
struct Moves
{
const char* date;
const char* street;
...
-1
votes
3answers
75 views
Strange behaviour with a vector of pointers
I'm having a bit of trouble understanding the output that I get when I run this simple piece of code
#include <vector>
#include <iostream>
#include "LxUNIXsys.h"
using namespace std;
int ...
0
votes
1answer
106 views
Deallocating memory from a vector of vectors of pointers
I'm creating a particle physics simulator and I need to make proper memory management.
I've found convenient that my method propagates several particles at once so this method returns a vector of ...
1
vote
1answer
88 views
Deleting all values from a QMap
I have a QMap consist of pointers to class objects, allocated using new. I need to delete all these pointers. What is the proper way of doing this with QMap ? I can do it this way:
...
0
votes
1answer
51 views
What is the proper way to delete an array of pointers and their objects?
ppTile = new Tile*[tileN];
for(int x=0; x<tileN; x++)
{
ppTile[x] = new Tile(Tile::TileType(pCData->GetdefaultTile()),
((x*2)+1) % ...
1
vote
1answer
109 views
simple AVL tree delete is only working sometimes
I'm working on an AVL tree. It seems the my remove only works correctly some of the time. I built a tree that looks like this
f
/ \
e j
/ / \
a h ...
3
votes
4answers
108 views
C++ : How to delete a pointer created in a function and as the return value
class AAA{
}
class BBB{
public:
AAA* doSomething(){
return new AAA();
}
}
Hi, I created and returned a pointer with NEW in a function in class BBB, I want to know whether I should ...
1
vote
1answer
143 views
Deleting two dimensional array use memory? C++
Hello and thanks for your attention! :)
I have been working on this program for quite some time. This is just two of the functions extracted that are causing a memory leak that I cant seem to debug. ...
6
votes
3answers
136 views
deleting multiple pointers in one line. c++ [duplicate]
Does this delete all the pointers or does this just delete the first pointer p1?
delete p1,p2,p3,p4,p5;
1
vote
2answers
84 views
Lambda function referenced pointer destroyed detection
I create a lambda function to run code in a different thread or simply to run it a bit later, but it can happen that an object kept by the lambda function is deleted in the mean time.
How can I ...
2
votes
1answer
177 views
C++ Static List of object pointers, and memory leak
I am trying to have a class that containes a static list of pointers to instances of the class, but i am getting a memory leak. I was wondering if anyone could point out what is wrong with the ...
0
votes
3answers
127 views
How do I delete this 2D array in c++
In simple 1D array :
node *nodes = new node[MAX_NODES];
deleting by
delete [] nodes;
deletes all the nodes allocated in the array.
But in this case :
float (*buildingArray)[3] = new ...
1
vote
3answers
117 views
c++ invalid pointer error
I'm getting invalid point error from the code below I don't see why. All I'm trying to do is to delete free some strings on the heap from a vector:
void func() {
vector<string>* vec = new ...
1
vote
3answers
68 views
How do I “reset” a buffer?
Say I create a member variable pointer pBuffer. I send this buffer into some unknown land to be filled with data. Now say pBuffer has an arbitrary amount of data in it.
Q: Is there a way to reset ...
0
votes
3answers
85 views
When to delete/dereference in C++
myObj* var = new myObj;
var = other1;
don't need it anymore
delete var;
var = new myObj;
var = other2;
why can't just dereference instead of deleting and allocating again?
var->other2;
0
votes
2answers
82 views
C++: new and delete mixup
I have a small problem with using the new and delete operators. I read in a bunch of places that every 'new' operator has to correspond to a 'delete', and as I understand it, variables created with ...
2
votes
3answers
335 views
Pointer being freed was not allocated?
Tell me what the 3rd line is doing please. Thanks a lot.
int main(){
int *p = new int[3];
*p++=0; // What's this line doing?
delete p;
return 0;
}
0
votes
1answer
61 views
C++ destroy_tree pointer error
I have a problem with destroy_tree function for deleting a tree in C++. Compiler says *** glibc detected *** <path>: free(): invalid pointer: 0x00007f37590d3778 ***. Here is my destroy_tree ...
3
votes
1answer
87 views
MPI: pointer being freed
I don't understand what can be wrong in the following code. It generate a "pointer being freed was not allocated" error.
#include "mpi.h"
using namespace std;
void changeArray(bool* isPrime){
...
1
vote
1answer
122 views
c++ delete pointer; program crash [closed]
I am missing something basic here but cannot figure it out yet. Below is the code that is troubling me.
class A
{
public:
A();
~A();
initialize();
addToMap(const string& k, const ...
0
votes
2answers
86 views
trying to delete pointers triggers breakpoints
Working on a project for my beginners' computer science class that works with C++ programming. The purpose of the program that I'm working on is creating a class to "improve" the default integer ...
-2
votes
1answer
130 views
Do I need to delete a pointer if I haven't assigned it a new value?
Just a quick question:
Do I need to delete a pointer if I haven't actually assigned a new value to it?
What I've done if created a pointer and then handed it a reference to something like so:
...
2
votes
4answers
77 views
Crash when deleting a pointer
I have an assignment to create a PriorityQueue structure and im having trouble with this piece of code. When I compile it on my compilator everything's fine, but I tried submiting it to ideone and I ...
0
votes
1answer
60 views
Erasing from a pointer to a vector of pointers
For the following code:
vector<int*> x;
vector<int*>* p;
// say i initiated x with a couple of integers
p = &x;
//erases the indicie of the given integer
void ...
0
votes
2answers
182 views
How to delete a pointer pointing to a dynamically allocated object inside a dynamically allocated object?
I have a Person class. Inside this Person class, I have a pointer Strategy object, which is my base class (I'm using inheritance/polymorphism):
Strategy* strat;
I also have a Parser class. And I say ...
0
votes
0answers
238 views
deleting a double pointer [closed]
I have had a look at these previous questions
delete a pointer to pointer (as array of arrays)
and C++ deleting a pointer to a pointer
from both of them I see that I have to loop over the pointer and ...
3
votes
6answers
449 views
c++ Deleting a pointer
Context: I'm trying to wrap my head around pointers, we just saw them a couple of weeks ago in school and while practicing today I ran into a silly? issue, it can be super straightforward to you but I ...
3
votes
4answers
105 views
c++: destruct with a pointer to object
If an object exists as such:
MyClass obj;
To call a member function:
obj.myMemberFunction();
Then to call the destructor of that object after it fulfills its purpose:
delete obj;
However, ...
3
votes
1answer
77 views
c++ delete operator with memory locations
I am very new to c++, and now am studying new and delete keywords.
Point ppaa = *new Point;
Point *p = &ppaa;
ppaa.xpos = 1;
ppaa.ypos= 3;
delete &ppaa;
delete p;
Could you please explain ...
0
votes
5answers
147 views
Can I re-use a pointer in this case?
Suppose:
struct Foo
{
Obj* pObj;
Foo() : pObj(NULL);
};
Obj* CreateObj()
{
//do some stuff and then
return new Obj; //obj is a class
}
int main()
{
Foo foo;
foo.pObj = ...
1
vote
1answer
122 views
Switching states in a FSM
I'm experimenting with using a finite state machine as a model for managing the flow of a simple game. Enter into a Main Menu state, from which you select say starting a game or modifying options, ...
5
votes
4answers
419 views
C++: Does deleting void pointer guarantee to delete right size? [duplicate]
Possible Duplicate:
Is it safe to delete a void pointer?
Lets say I have a new allocation to a class called MyClass and allocation is as simple as:
MyClass *myClassPtr = new MyClass();
...
0
votes
6answers
385 views
Avoid memory leak in C++ class
I've defined a C++ class with the following header file:
class EarleyParser
{
public:
EarleyParser();
virtual ~EarleyParser();
void initialize( string filePath, bool ...
0
votes
2answers
128 views
How to delete more than 1 pointers point to same address [duplicate]
Possible Duplicate:
how to safely delete multiple pointers
As the code below:
#include <iostream>
using namespace std;
int main(int argc, _TCHAR* argv[])
{
int *p, *q;
q = ...
-1
votes
1answer
211 views
Deleting pointer to vector of pointers
I'm trying to delete my pointer to a vector but it includes pointers (in a way)
struct TestObject
{
public:
// some values
};
template <typename T> class VectorObject
{
public:
...
0
votes
7answers
260 views
Deleting an object when multiple pointers are pointing to it?
I've been told that when if I have multiple pointers pointing to the same object, I cannot delete it normally (using the delete keyword). Instead, I've been told that I need to set the pointers to ...
-1
votes
1answer
282 views
Access pointer array / through another pointer and delete single element in array without deleting first pointer or whole array
In my Main Window I create an instance of PointerClass, which holds an array of pointers to PointerObject (I want to be able to access it with PointerObject[X][Y] and delete it the same way, and check ...
-1
votes
4answers
193 views
Delete pointer to multidimensional array in class through another pointer - how?
I have a pointer to a class, that have a pointer to a multidimensional array but I can't seem to delete it from memory when I need to or set it to NULL.
#define X 10
#define Y 10
struct TestClass
{
...
1
vote
5answers
145 views
Deleting a pointer of vectors
I am trying to write a very simple piece of code to create a 3x2 matrix using STL vectors. This is what I have:
#include <vector>
using namespace std;
int main ()
{
int i;
...
3
votes
2answers
218 views
does deleting a pointer delete the memory it's pointing too
If I have a pointer like so:
int *test = new int;
And I create another pointer that points to test like so:
int *test2 = test;
Then I delete test2:
delete test2;
Does that mean that it will ...
0
votes
2answers
608 views
deleting a node from linked list using `delete`
Here is a part of code for deleting an element from the tail a singly Linked List:
int SLList::deleteFromTail()
{
int el = tail->info;
//if the list has only one element
if(head == ...
0
votes
5answers
355 views
Delete pointer to vector of char* in destructor (Not working)
I have a class that holds a few vectors, I'm not sure which method is the best but when the I call the destructor they should be deleted from memory.
HEADER:
class Test
{
public:
Test();
...
2
votes
2answers
104 views
Dynamically instancing a class then deleting it right away
I created my own class but when I try to instance it I run into a wall, my piece of code is:
m_interpolation = new Interpolation(m_mesureList, width, height, parent);
delete m_interpolation;
Which ...
2
votes
5answers
105 views
Error when deleting a pointer
I'm beginning and there is something that i don't understand with pointers.
I have the following code returning an error i don't know why:
std::string key = "myKey";
const unsigned char* aesKey = ...


