Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
3answers
1k views

When does invoking a member function on a null instance result in undefined behavior?

This question arose in the comments of a now-deleted answer to this other question. Our question was asked in the comments by STingRaySC as: Where exactly do we invoke UB? Is it calling a member ...
21
votes
3answers
329 views

Pointer conversion issue with Ternary operator

I know the ternary operator has some surprising restrictions, but I was a bit baffled that this fails to compile for me: void foo(bool b) { int* ptr = ((b) ? NULL : NULL); } Obviously that's ...
18
votes
3answers
148 views

How do I prevent trouble arising from std::string being constructed from `0`?

void foo (const std::string &s) {} int main() { foo(0); //compiles, but invariably causes runtime error return 0; } The compiler (g++ 4.4) apparently interprets 0 as char* NULL, and ...
18
votes
3answers
441 views

Is it undefined behaviour to delete a null void* pointer?

I know that deleteing a null pointer is a no-op: In either alternative, if the value of the operand of delete is the null pointer the operation has no effect. (C++ Standard 5.3.5 [expr.delete] ...
16
votes
7answers
7k views

Accessing class members on a NULL pointer

I was experimenting with C++ and found the below code as very strange. class Foo{ public: virtual void say_virtual_hi(){ std::cout << "Virtual Hi"; } void say_hi() { ...
9
votes
5answers
757 views

Which of these will create a null pointer?

The standard says that dereferencing the null pointer leads to undefined behaviour. But what is "the null pointer"? In the following code, what we call "the null pointer": struct X { static X* ...
7
votes
8answers
554 views

What is a void pointer and what is a null pointer?

So I was going through some interview questions an I came across this question The answer to the question confused me throughly! It seems void and null could be used interchangeably according to this ...
6
votes
9answers
833 views

About the non-nullable types debate

I keep hearing people talk about how non-nullable reference types would solve so many bugs and make programming so much easier. Even the creator of null calls it his billion dollar mistake, and Spec# ...
5
votes
8answers
269 views

Uninitialized pointers in code

I am learning C++ and I came to know that pointers if left uninitialized could point to random locations in memory and create problems that memory might be used by some other program. Now if that is ...
5
votes
3answers
4k views

Android - Dealing with a Dialog on Screen Orientation change

I am overriding the onCreateDialog and onPrepareDialog methods or the Dialog class. I have followed the example from Reto Meier's Professional Android Application Development book, Chapter 5 to pull ...
4
votes
2answers
369 views

Calling a method on an unitialized object (null pointer)

What is the normal behavior in Objective-C if you call a method on an object (pointer) that is nil (maybe because someone forgot to initialize it)? Shouldn't it generate some kind of an error ...
3
votes
2answers
134 views

C++ Losing pointer reference after scope end

I'm getting a really weird error where after I leave the for scope I can't access whatever my pointer was pointing during the loop even if the array holding the objects is declared in the class ...
2
votes
2answers
144 views

C++ Linkedlist simple question

I'm trying to check if an entity exists in a given linkedlist. This is my code: bool LinkedList::existByID(int ID) { //create node to search through the list Node * helpNode; //start it at the top ...
2
votes
9answers
1k views

Can using 0L to initialize a pointer in C++ cause problems?

In this question an initializer is used to set a pointer to null. Instead of using value of 0 value of 0L is used. I've read that one should use exactly 0 for null pointers because exact null pointer ...
1
vote
4answers
108 views

deleting a null pointer [closed]

Possible Duplicate: Is there any reason to check for a NULL pointer before deleting? I often see the following in code: if(pointer) delete pointer; To my understanding it is safe to ...
1
vote
3answers
64 views

NULL passed directly to a function expecting a const reference parameter (VC++ 4.2)

I am looking at something that I discovered in an old code base, and I am pretty confused. Here is a function definition: void vUpdateSequenceDetailsAndIncrement( const CallEvent& ...
1
vote
1answer
378 views

(Open-)JPA 1.0: OneToMany-related list is null, when fetching in lazy mode

I have a problem with JPA 1.0 (OpenJPA) Following situation @Entity public class A{ private Long aId; private List<B> bEntities; //myId getter and setter ...
1
vote
6answers
357 views

So how do we check if a pointer is NULL pointer?

I always think simply if(p != NULL){..} will do the job. But after reading this thread,it seems not. So what's the canonical way to check for NULL pointers after absorbing all discussion in that ...
0
votes
2answers
98 views

Null pointer Exception in asynctask

Please help me why i'm getting this error. I'm getting Json response converting into string using convertStreamToString method getting correct string, I can able to see this string in my logcat. Now ...
0
votes
5answers
159 views

C++ delete operator on pointer, pointer not nulling

I'm trying to implement a directed graph in C++. However, I'm having trouble with my RemoveEdge function, after I call the function and it uses the delete operator on the pointer and set the pointer ...
0
votes
1answer
54 views

What are the Ruby Win32API Parameters | How do I pass a null pointer?

I know the following: 'L' - Long 'P' - Pointer 'I' - Integer 'V' - Void My problem is that I can't pass a null pointer when I perform an API call. E.g.: ['L', 'P', 'L'] -> api.call(0, nil, 0) ...
0
votes
1answer
44 views

How to handle tinyxml null pointer returned on GetText()

TiXmlElement *pElem; std::string StatusResponse; pElem = hResponse.FirstChild("StatusResponse").Element(); if (pElem) StatusResponse = pElem->GetText(); If pElem is valid but the element ...
0
votes
2answers
165 views

Access violation on destruction of a null pointer

The problem I am having is that when my class CLimb runs its destructor, if member *parent is NULL I get an "Access violation writing location 0xcccccccc" error, after the destructor is called, but ...
0
votes
5answers
144 views

Assigning a reference by dereferencing a NULL pointer

int& fun() { int * temp = NULL; return *temp; } In the above method, I am trying to do the dereferencing of a NULL pointer. When I call this function it does not give exception. I found ...
0
votes
2answers
232 views

c++ functional programming ( boost::phoenix && boost::spirit) testing for null-ptrs in pointer placeholders

So, I have the following spirit karma rule body: base_rule = eps(_r1 != 0) [ // _r1 is a pointer_typed placeholder eps ] ; which leads to a rather long error message from g++ which ...
0
votes
3answers
556 views

Null pattern with QObject

(C++/Qt) I have a smart pointer to a QObject. Let's say a QWeakPointer. For some external reason (something that might happen in another object or due to an event), it is possible that the pointed ...
0
votes
6answers
421 views

C89: Access violation reading 0x00 (difficulty with malloc)

I am developing C89 on Visual Studio 2010 Ultimate Beta (Win 7). I don't think I'm using malloc() correctly. I am new to C, so please excuse the beginner question. The goal of my program is to count ...