Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
356 views

Why does my program occasionally segfault when out of memory rather than throwing std::bad_alloc?

I have a program that implements several heuristic search algorithms and several domains, designed to experimentally evaluate the various algorithms. The program is written in C++, built using the ...
5
votes
3answers
612 views

Is it okay to manually throw an std::bad_alloc?

I have this code.. CEngineLayer::CEngineLayer(void) { // Incoming creation of layers. Wrapping all of this in a try/catch block is // not helpful if logging of errors will happen. ...
4
votes
3answers
250 views

bad_alloc when calling new on class Texture

This is the offending line: Texture *texture = new Texture (...); I receive from bad_alloc here: void *__CRTDECL operator new(size_t size) _THROW1(_STD bad_alloc) { // try to allocate ...
3
votes
1answer
83 views

Why don't I get std::bad_alloc in my WinCE application?

According to C++ Standard, operator new should throw std::bad_alloc(); when allocation fails. To test this behavior I came up with the following code: try { for (;;) { Big* p = new ...
3
votes
1answer
311 views

Mergesort - std::bad_alloc thrown when trying to assign vector

Good afternoon ladies and gents. So, it is not my day for errors. Implementing Mergesort (not in-place) in C++, and I'm having real trouble with the code, with no idea why. The second-to-last line of ...
3
votes
5answers
2k views

Allocating large blocks of memory with new

I have the need to allocate large blocks of memory with new. I am stuck with using new because I am writing a mock for the producer side of a two part application. The actual producer code is ...
2
votes
2answers
166 views

“std::bad_alloc”: am I using too much memory?

The message: terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc I looked at the gdb backtrace and this is the lowest level method in there that I implemented ...
2
votes
3answers
35 views

memory allocation vs. swapping (under Windows)

sorry for my rather general question, but I could not find a definite answer to it: Given that I have free swap memory left and I allocate memory in reasonable chunks (~1MB) -> can memory allocation ...
2
votes
5answers
384 views

C++ array of derived class vs array of pointers of base class to derived objects - why is amount of memory allocated so much different?

I need some clarification on an issue I don't quite understand. Using the two scenarios that follow, I would have thought that the amount of memory allocated would roughly be the same. However, ...
2
votes
4answers
770 views

c++ stl priority queue insert bad_alloc exception

I am working on a query processor that reads in long lists of document id's from memory and looks for matching id's. When it finds one, it creates a DOC struct containing the docid (an int) and the ...
2
votes
3answers
3k views

How can I debug St9bad_alloc failures in gdb in C?

I have a program failing with: terminate called after throwing an instance of 'std::bad_alloc' what(): St9bad_alloc I imagine it's something to do with malloc/free, but I don't know which one. ...
2
votes
2answers
400 views

Operator new and bad_alloc on linux

On Linux, malloc doesn't necessarily return a null pointer if you're out of memory. You might get back a pointer and then have the OOM killer start eating processes if you're really out of memory. ...
1
vote
3answers
140 views

std::bad_alloc not getting caught in any calling stackframe

If the new operator fails to allocate memory, the exception std::bad_alloc is only getting caught if I put a try-catch block immediately surrounding the new statement. If I instead have the try-catch ...
1
vote
2answers
209 views

MySQL C++ Connector memory overflow error

I've been trying to hook up to my own locally hosted MySQL database with the MySQL/C++ Connector package. The lines that are really giving me a problem are: driver = get_driver_instance(); auto_ptr ...
1
vote
1answer
344 views

std::bad_alloc when adding a struct to std::vector

this is probably something stupid, but i can't figure it out. I'm getting a std::bad_alloc exception in the following code snippet (which is a case statement in a switch): case 0: { MyPrimitiveNode* ...
1
vote
4answers
1k views

Debugging strategy to find the cause of bad_alloc

I have a fairly serious bug in my program - occasional calls to new() throw a bad_alloc. From the documentation I can find on bad_alloc, it seems to be thrown for these reasons: When the computer ...
0
votes
2answers
125 views

Why does this give a bad_alloc error?

Currently I'm trying to set up a member function for Student that reads a string from cin, is used as an argument for this function and then creates a Student object with the data. However, is it ...
0
votes
4answers
683 views

Bad_alloc exception when using new for a struct c++

I am writing a query processor which allocates large amounts of memory and tries to find matching documents. Whenever I find a match, I create a structure to hold two variables describing the document ...
0
votes
4answers
95 views

bad_alloc exception when trying to print the values

I've debugged my other problem back, to the MyMesh constructor. In this code: if (hollow) { numTriangles = n*8; triangles=new MyTriangle[numTriangles]; if (smooth) numSurfacePoints=n*8; ...
0
votes
4answers
195 views

problems with operator new when allocating arrays

I'm having prblems with my C++/openGL program. at some point of code, like these(it's a constructor): MyObject(MyMesh * m, MyTexture* t, float *c=NULL, float *sr=NULL, int sh=100){ texture=t; ...
0
votes
4answers
712 views

Out of memory (?) problem on Win32 (vs. Linux)

I have the following problem: A program run on a windows machine (32bit, 3.1Gb memory, both VC++2008 and mingw compiled code) fails with a bad_alloc exception thrown (after allocating around 1.2Gb; ...
0
votes
2answers
1k views

How to resolve this bad_alloc problem?

I'm developing an application that needs to interact over FTP. For this communication I am currently using C++, Visual Studio and Poco on Windows. The following line results in a bad_alloc ...