Tagged Questions
1
vote
1answer
31 views
Stack Overflow Behaviour in Native Languages
I'm curious to why most natives languages, including C,C++ and D, doesn't define stack-overflow behaviour. Is it because it would require instrumenting every stack variable allocation and function ...
3
votes
1answer
173 views
Does QObject distinguish between stack and heap allocated children when deleting?
According to the Qt documentation:
QObjects organize themselves in object trees. When you create a
QObject with another object as parent, the object will automatically
add itself to the ...
2
votes
1answer
60 views
Is returning the address of temporary an undefined behavior here?
Is this undefined behavior in c++?
#include <iostream>
const double& abs(const double& x){
return x>0 ? x:-x;
}
int main () {
double x = -10.0;
double y = abs(x);
...
7
votes
2answers
347 views
C++: Strange behavior: Return value changes on the return statement
I'm facing a very very strange behavior my application.
I'm going to describe my situation and then explain what is going wrong.
Situation
I have a method with a signature like this:
const ...
0
votes
3answers
135 views
Why does string copy fail for already allocated string [duplicate]
Possible Duplicate:
Simple modification of C strings using pointers
Why does this fail and give an unhandled exception in VS2010 when running the function stringCopy_test()? Note that when ...
11
votes
5answers
260 views
How would a heap-allocated const object differ from non-const one?
In C++ it is possible to allocate a const object on heap:
const Class* object = new const Class();
const_cast<Class*>( object )->NonConstMethod(); // UB
so that attempt to write into an ...
1
vote
1answer
47 views
Advice on solving UD in low level management functions
I'm fairly new to C and have started out writing a small library with functionality to get length of strings, reversing strings, converting binary data in char buffers to ints and shorts. Just for the ...
1
vote
4answers
409 views
Can I assume heap was not corrupted if _heapchk() returns “okay”?
In Visual C++ using new[] to allocate an array of objects and then delete (not delete[]) by default triggers undefined behavior of the following kind.
Calling destructors for all objects requires ...
9
votes
16answers
1k views
Why exactly is calling the destructor for the second time undefined behavior in C++?
As mentioned in this answer simply calling the destructor for the second time is already undefined behavior 12.4/14(3.8).
For example:
class Class {
public:
~Class() {}
};
// somewhere in code:
...
8
votes
8answers
925 views
Can I new[], then cast the pointer, then delete[] safely with built-in types in C++?
In my code I have effectively the following:
wchar_t* buffer = new wchar_t[size];
// bonus irrelevant code here
delete[] reinterpret_cast<char*>( buffer );
Types in question are all built-in ...
5
votes
11answers
474 views
Are memory leaks “undefined behavior” class problem in C++?
Turns out many innocently looking things are undefined behavior in C++. For example, once a non-null pointer has been delete'd even printing out that pointer value is undefined behavior.
Now memory ...
15
votes
9answers
2k views
How could pairing new[] with delete possibly lead to memory leak only?
First of all, using delete for anything allocated with new[] is undefined behaviour according to C++ standard.
In Visual C++ 7 such pairing can lead to one of the two consequences.
If the type ...