The null-pointer tag has no wiki summary.
3
votes
4answers
78 views
Is the NULL pointer implicitly converted to type (int*) when we use “if(ptr==NULL)” for an integer pointer ptr?
I know that a NULL pointer is (void*)0.But what happens when we use statements like the following:
if(ptr==NULL)
where ptr can be a char,float or int pointer?Is NULL guaranteed to be implicitly ...
6
votes
2answers
106 views
What is the overhead of Rust's Option type?
In Rust, pointers can never be null, so in case where you actually need null, such as a linked list, you use the Option type:
struct element {
value: int,
next: Option<~element>,
}
...
0
votes
3answers
37 views
NullPointerException while accessing SQLite from non-activity class
While accessing SQLite from non-activity class, getting NullPointerException
File -> SessionDB.java
public class SessionDB {
private SQLiteDatabase database;
private SQLiteHelper dbHelper;
private ...
0
votes
3answers
54 views
Android - NullPointerException
I'm getting a NullPointerException that is breaking the code on this line:
if (options.isVisible()) {
Here is the block of code:
protected static GoogleMap map;
protected static MarkerOptions ...
1
vote
1answer
40 views
Why is va_arg returning NULL at the end of a variable argument list of type char*?
This is what has been said about va_arg in the reputed link below:
http://www.cplusplus.com/reference/cstdarg/va_arg/
Notice also that va_arg does not determine either whether the retrieved argument ...
0
votes
1answer
34 views
C - Null pointer issue on AVL tree rotation implementation
I'm implementing an AVL tree in C. I've posted my tree rotations below, as well as the valgrind errors I get when I try to test them.
Why am I getting these errors? I understand that the valgrind ...
1
vote
6answers
72 views
C++ - strange behavior of null pointer [duplicate]
I created a NULL pointer of class App,But somehow the method of the NULL object(of App)
is working .
Here is my code:
#include "App.h"
#include <iostream>
using namespace std;
int main()
{
...
-1
votes
1answer
54 views
Java assignment :Forloop wont fall back into my while loop and is giving a null pointer error
In this snippet for my assignment i have two arrays of type member and account. They are tied together by ssn that is given by both in member and member account creation. My problem is that after the ...
5
votes
1answer
188 views
Is performing arithmetic on a null pointer undefined behavior?
It looks to me like the following program computes an invalid pointer, since NULL is no good for anything but assignment and comparison for equality:
#include <stdlib.h>
#include ...
3
votes
2answers
125 views
Literal zero instead of null-pointer-constant by MISRA
I have this function:
void InitS(unsigned int &numS){
numS = props.numOfS(); //this function returns a container for unsigned int but it has a cast for int
if (numS > 0) {
..
...
0
votes
2answers
274 views
Can't get internet data at android 4.0.4
I have a problem with my developed app for Android.
I trying to get data from Google Translate API via JSON Parser.
The application works perfectly on Emulator (v 2.1) and T-Mobile Move Balance (v ...
3
votes
1answer
203 views
When does invoking a member function on a null instance result in undefined behavior in C++11? [duplicate]
Possible Duplicate:
When does invoking a member function on a null instance result in undefined behavior?
I just read this question with an excellent answer: When does invoking a member ...
2
votes
6answers
169 views
Null pointer test performance
What is the performance of testing whether a reference-type variable in C# is a null-pointer (like if (x == null) ...) compared to testing for an integer being smaller than zero or even a bool being ...
-3
votes
2answers
120 views
Unhandled exception at 0x009f240e in OpenGL and GLUT - 101.exe: 0xC0000005: Access violation writing location 0x00000000 [closed]
I keep getting the following error: Unhandled exception at 0x009f240e in OpenGL and GLUT - 101.exe: 0xC0000005: Access violation writing location 0x00000000.
I have found some questions here with a ...
0
votes
3answers
114 views
C++: Will structs be copied implicitly
I'm relatively new to C++ and I'm wondering if structs are copied in the following case:
struct foo {
int i;
std::vector<int> bar;
}
class Foobar {
foo m_foo;
void store(foo& f) {
...
2
votes
2answers
61 views
BST null pointer assignment error
I tried implementing the BST program but the execution failed because of a runtime error. Please tell me how to correct it. My code for creation of the tree is:
struct node *createBinTree()
{ int ...
0
votes
1answer
103 views
nulll pointer exception for pause method in Mediaplayer for android
I keep getting null pointer exceptions for methods of MediaPlayer. I was finally able to get the play function to work by moving the code for play and initialize of play functions into a separate ...
1
vote
2answers
152 views
NullPointerException in my game, can't be fixed
I'm making an rpg with a custom pixel engine, and when I try to run it I just get a NullPointerException and I know why, but when I try to initialize that variable I get another one in a different ...
0
votes
4answers
99 views
Exact output of free() in C?
I wanted to ask, if I have a pointer pointing at some struct, but then I free(struct) then if I dereference the pointer, will it be pointing to NULL? As in can I check, pointer != NULL or is this ...
0
votes
0answers
65 views
Null pointer exceptions on bitmaps after updating to Android 4.0
Hi I've been developing an application and after updating my phone to Android 4.0.4 I am receiving null pointer exceptions saying that a bitmap opject is null. I havent changed any code and this has ...
1
vote
0answers
96 views
Dereferencing a NULL pointer in C++ [duplicate]
Possible Duplicate:
Accessing class members on a NULL pointer
I know dereferencing a NULL pointer crashes the program or give undefined behavior. But following program consistently prints ...
2
votes
5answers
165 views
Understanding pointers with NULL
I'm still learning about pointers. I know about switching up if statements and such. In the book i'm using, I was given this example:
FILE* from = fopen("in.txt", "r");
FILE* to = ...
0
votes
2answers
122 views
Ruby syntactic sugar for chains of (!obj.nil?) [duplicate]
Possible Duplicate:
Is there a clean way to avoid calling a method on nil in a nested params hash?
Is there an equivalent null prevention on chained attributes of groovy in ruby?
Is there ...
1
vote
4answers
196 views
Do the advantages of using references over using pointers justify occasional “null-references”?
I'm currently designing a class hierarchy that looks roughly like this:
struct Protocol
{
// Pass lower-layer protocol as a reference.
Protocol(Protocol & inLLProtocol) :
...
-1
votes
2answers
1k views
Invalid Null pointer - C++
I am getting an invalid null pointer error from this section of code. I am guessing it is something to do with the strings, but as I have only recently learnt about them, I cannot find the problem.
...
0
votes
2answers
314 views
can't get the sessionFactory
my java project with spring and hibernate,can't get the sessionFactory.it's null all the time when i use it. the configuration:
<bean id="sessionFactory"
...
1
vote
1answer
119 views
Pointer assignment not working while debugging
I have a struct that contains two pointers, < head, iterator > both pointers point to another struct - Node.
typedef struct Map_t {
Node head;
Node iterator;
} Map_t;
typedef struct ...
0
votes
1answer
139 views
Null Pointer Exception in Silverlight Business Application
I am new to silverlight. I have just created a new silverlight business application in visual studio. But, I cannot see the pages in designer mode. When ever i choose designer mode, it is throwing ...
3
votes
4answers
97 views
Two equality comparisons with NULL in C
This is regarding a small confusion regarding pointers in C++ while comparing them to NULL.
Here's the code :
struct node
{
int data;
struct node *left;
struct node *right;
}
int main()
{
...
-1
votes
3answers
190 views
May I have a real life example where a non-static member function not accessing the object being called through a null pointer causes problems? [duplicate]
Possible Duplicate:
When does invoking a member function on a null instance result in undefined behavior?
Anything like this:
class Class {
public:
void Method()
{
//empty;
...
0
votes
2answers
825 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 ...
1
vote
5answers
252 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 ...
1
vote
2answers
696 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) ...
3
votes
4answers
591 views
deleting a null pointer [duplicate]
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
1answer
354 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 ...
2
votes
3answers
614 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& ...
0
votes
2answers
302 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 ...
21
votes
3answers
509 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 ...
3
votes
5answers
621 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 ...
1
vote
1answer
2k 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
...
18
votes
3answers
198 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 ...
0
votes
2answers
402 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 ...
5
votes
6answers
5k 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 ...
22
votes
3answers
1k 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] ...
2
votes
2answers
302 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 ...
3
votes
2answers
346 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 ...
9
votes
8answers
3k 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 ...
12
votes
1answer
812 views
Is it guaranteed to be safe to perform memcpy(0,0,0)?
I am not so well-versed in the C standard, so please bear with me.
I would like to know if it is guaranteed, by the standard, that memcpy(0,0,0) is safe.
The only restriction I could find is that if ...
3
votes
5answers
433 views
Is apparent NULL pointer dereference in C actually pointer arithmetic?
I've got this piece of code. It appears to dereference a null pointer here, but then bitwise-ANDs the result with unsigned int. I really don't understand the whole part. What is it intended to do? Is ...
10
votes
8answers
2k 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 ...


