Tagged Questions

1
vote
1answer
69 views

De-referencing null in VS with Windows 7

I have noticed that when I was running Windows XP, if my code dereferenced null I would get a crash in debug and I could then easily identify where the bug was coming from. It see …
1
vote
5answers
277 views

In C: How to set a pointer to a structure member that is an array?

How should I write my code to example a specific array index of an array that happens to be a member of a structure? The following code is giving me problems. // main.c void cle …
1
vote
3answers
116 views

return the value in a stack - C++

I have the following defined: Stack<ASTNode*>* data; The way the class is defined, if I do data->push() or data->pop(), I directly push onto the stack or pop off the …
1
vote
3answers
214 views

How to dereference a pointer passed by reference in c++?

I'm doing (something like) this: void insert(Node*& node, string val, Node* parent) { if (node == NULL) instantiateNode(node, val, parent); else insert(node-&g …
1
vote
1answer
129 views

Can the Subversion client (svn) derefence symbolic links as if they were files?

I have a directory on a Linux system that mostly contains symlinks to files on a different filesystem. I'd like to add the directory to a Subversion repository, dereferencing the …
0
votes
4answers
46 views

Objective C - Change the values within NSArray by dereferencing?

Hi everyone, I've come across a problem related to pointers within arrays in objective-c. What I'm trying to do is take the pointers within an NSArray, pass them to a method, and …
0
votes
2answers
39 views

Javascript - Remove references to my object from external arrays

I have a problem with dereferencing a Javascript object and setting it to NULL. Here, I have a Folder implementation that supports recursive subdirectory removal. Please see my c …
0
votes
5answers
68 views

Doubt regarding de-referencing structure pointers. Please explain

I am compiling this piece of code and I get compliation errors saying " dereferencing pointer to incomplete type" . I get the errors for the last print statement and before that w …
0
votes
1answer
29 views

Dereferencing Aliases in LDAP using Spring

How to control LDAP Alias Dereferencing Mode using Java and Spring LDAP API? Similarly to how it is done using ldapsearch on linux. Example: ldapsearch -a never "(&(o=foo)(cn …
0
votes
3answers
77 views

How to initialze an array after dynamic memory allocation?

I have a function that returns an array of different lengths based on a table lookup. I am malloc'ing required memory for it inside the function but then how can I fill the array f …
0
votes
4answers
193 views

Unhandled exception when dereferencing char pointer in Visual C++ 2008

I'm trying to do some classic C development in Visual C++ 2008 that will modify the characters of a string like so: void ModifyString(char *input) { // Change first character to …
0
votes
3answers
316 views

Expression: String iterator not dereferencable

I'm having a hard time using std::string::iterators in C++. This code compiles fine (still not getting correct output, but that's my fault: TODO, fix algorithm) in Dev-C++, and I d …