Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

240
votes
13answers
83k views

Can a local variable's memory be accessed outside its scope? [closed]

Possible Duplicate: Returning the address of local or temporary variable I have the following code. int * foo() { int a = 5; return &a; } int main() { int* p = foo(); ...
10
votes
5answers
472 views

C++: Writing a function to free a pointer and the assigning it NULL

So I was asked this in a recent interview, basically writing a function to combine the free and Assigning null functionality. I answered in the following manner, void main() { int *ptr; ...
6
votes
8answers
258 views

is it compulsory to initialize pointers in c++

is it compulsory to initialize , before assigning value to pointer t. is the following section of code correct? if not please let me know the reason . void swap(int *x,int *y) { int *t; ...
5
votes
4answers
2k views

c++ - dangling pointer example

Please explain why s1.printVal causes a dangling pointer error. Isn't the s1 object, i.e. its pointer, still accessible until it's destroyed? class Sample { public: int *ptr; ...
3
votes
7answers
210 views

Safe in C# not in C++, simple return of pointer / reference,

Code c++: person* NewPerson(void) { person p; /* ... */ return &p; //return pointer to person. } Code C#: person NewPerson() { return new person(); //return reference to person. } If ...
3
votes
3answers
128 views

Dangling pointer:anyway to check?

I have a code where I use a pointer to access some datablock. Now in some rare cases, few members of the datablock are empty and as a result the pointer becomes dangling. Infact i get the correct ...
3
votes
1answer
138 views

A point From N3290 C++ Draft : 12.2 Section .5th point ,line 10. .Please explain this?

A point From N3290 C++ Draft : 12.2 Section .5th point ,line 10. The second context is when a reference is bound to a temporary. The temporary to which the reference is bound or the temporary ...
2
votes
1answer
48 views

How to remove dangling Cursors in android

Can anyone tell me how to remove dangling cursors. I am Closing the Database whenever my work is completed with cursors. I want this as I am getting the same error as showed in link below ...
2
votes
1answer
75 views

Dangling Ref issue: returning ref of data from function

Please check the two code snippets below. While in sample two, there clearly resides dangling reference issue as ref of local variable is passed, do you think the same problem exists in sample 1? I ...
2
votes
5answers
535 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, ...
2
votes
4answers
323 views

dangling pointer, reason for value change after free()?

In the following code segment, after free(x), why does y becomes 0? As per my understanding, the memory in the heap that was being pointed to by x, and is still being pointed by y, hasn't been ...
2
votes
5answers
191 views

Trouble with dangling pointers and character arrays in C

main(){ char *cmd1[20] = {NULL}; int x = parse_command(cmd1); printf("%s\ ",cmd1[0]); } parse_command(char *inTempString){ char tempString[256]; (call to function that assigns a string ...
2
votes
3answers
626 views

Simple, efficient weak pointer that is set to NULL when target memory is deallocated

Is there a simple, efficient weak/guarded pointer? I need multiple pointers to the same object that are all automatically set to NULL when the object is deleted. There is one "master" pointer that is ...
2
votes
3answers
794 views

Why doesn't File::Find handle my dangling symlink?

I'm using Perl's File::Find module to scan for files, directories, and links. Among other things, I want the utility I'm writing to report dangling links. In theory, this is supported by creating a ...
1
vote
2answers
131 views

How char[] and char* are different in this case?

When we we run this piece of code: char *someFun(){ char *temp = "string constant"; return temp; } int main(){ puts(someFun()); } it works normally and prints "string constant" on the ...
1
vote
0answers
169 views

dangling else and AST implementation in ANTLR

I'm trying to implement an abstract tree, using ANTLR built-in support, and using building instructions which i find quite easy to handle. But I'm having a problem with the dangling else problem. ...
1
vote
6answers
779 views

Dangling Pointer in C

I wrote a program in C having dangling pointer. #include<stdio.h> int *func(void) { int num; num = 100; return &num; } int func1(void) { int x,y,z; ...
1
vote
1answer
510 views

Remove dangling commit from GitHub?

Yesterday I pushed to my fork of ConnectBot on GitHub: https://github.com/nylen/connectbot. I pushed once, realized that I hadn't made the change the way I wanted, and redid the commit and pushed ...
1
vote
4answers
841 views

Listing and deleting Git commits that are under no branch (dangling?)

I've got a git repository with plenty of commits that are under no particular branch, I can git show them but when I try to list branches that contain them, it reports back nothing: I thought this is ...
1
vote
5answers
330 views

C++ Problem with destructor called when removing element from STL container

Say I have 2 containers storing pointers to the same objects... std::list<Foo*> fooList; std::vector<Foo*> fooVec; Lets say I remove an object from one of these containers via one if ...
0
votes
1answer
217 views

if statement to tree representation in ANTLR

i have the following if statement that parses correctly: ifStatement : 'IF' expression 'THEN' statementBlock (options {greedy=true;} : 'ELSE' statementBlock)? ; now i ...
0
votes
9answers
212 views

C++ dynamically allocated list

Here is another long one: I'm still new to C++, so I still might be missing some basic concepts. I made myself a cute generic (to be read template) List class to handle lists in C++. The reason for ...
0
votes
5answers
505 views

In C++, what's the use of having a function void foo(int** p)?

I have been told by my colleague that this is used like an out parameter in C#, can some precisely explain how? I get the idea, but there is something that is missing.. I know that if we pass the ...
-3
votes
6answers
87 views

How to detect or prevent wild pointer

for example: int main() { int *a1 = new int; int *tmp = a1; delete a1; //now the tmp pointer is wild pointer, it's dangerous int *a2 = new int; delete tmp; //now, the a2 ...