Tagged Questions
The memory-corruption tag has no wiki summary.
15
votes
1answer
102 views
What could cause memory corruption in JavaScript?
I am developing an application which uses TinyMCE editors to allow the user to modify content. I have developed a Prototype.js class which, upon initialization, generates a unique ID and creates a ...
7
votes
1answer
215 views
“this” pointer getting corrupted in stack trace
I have seen this thread. My case is slightly different and I'm struggling to figure out how "this" pointer is getting corrupted.
I'm using the Qt 4.6.2 framework, using their QTreeView with my own ...
5
votes
10answers
805 views
What is the right tool to detect VMT or heap corruption in Delphi?
I'm a member in a team that use Delphi 2007 for a larger application and we suspect heap corruption because sometimes there are strange bugs that have no other explanation.
I believe that the ...
4
votes
7answers
324 views
Writing to pointer out of bounds after malloc() not causing error
when I try the code below it works fine. Am I missing something?
main()
{
int *p;
p=malloc(sizeof(int));
printf("size of p=%d\n",sizeof(p));
p[500]=999999;
...
4
votes
1answer
661 views
glibc Heap Consistency Checking
According to posts from 2008 (I can't find it right now), glibc heap check doesn't work in multithreaded environment. Is it still situation now in 2010?
Does heap check enabled by default? (gcc ...
4
votes
3answers
198 views
How to log when a particular memory location gets written and by which function?
I have a bug which happens very rarely but crashes my C++ program. It's seems I have a buffer overflow problem or something similar. I find that these types of bug are the most difficult to diagnose.
...
4
votes
2answers
212 views
void pointers and ffcall library
I'm using the ffcall (specifically the avcall package of ffcall) library to dynamically push parameters to variadic functions. i.e. we have
int blah (char *a, int b, double c, ...);
and we want to ...
3
votes
1answer
116 views
Simple C pointer issue
It's been a long (long...) time since I've done any C programming and I'm stuck on what should be a really simple issue. I have a simple function that's calling another function that is allocating ...
3
votes
3answers
224 views
Diagnose/Debug potential stack corruption .NET application
I think I have a curly one here... I have an WinForms application that crashes fairly regularly every hour or so when running as an x64 process. I suspect this is due to stack corruption and would ...
3
votes
4answers
49 views
Is there a command I can call to print out the malloc data structures?
Hi I wonder if there is any ready made function that I can call to print all the malloc data structures, so that I can see which memory is allocated for which variable?
I have this memory ...
3
votes
5answers
219 views
Methods/Tools for solving a Mystery Segfault while running on condor
I'm writing a C application which is run across a compute cluster (using condor). I've tried many methods to reveal the offending code but to no avail.
Clues:
On Average when I run the code on 15 ...
3
votes
3answers
767 views
C++ -malign-double compiler flag
I need some help on compiler flags in c++. I'm using a library that is a port to linux from windows, that has to be compiled with the -malign-double flag, "for Win32 compatibility". It's my ...
3
votes
6answers
461 views
std::string constructor corrupts pointer
I have an Entity class, which contains 3 pointers: m_rigidBody, m_entity, and m_parent. Somewhere in Entity::setModel(std::string model), it's crashing. Apparently, this is caused by bad data in ...
3
votes
8answers
696 views
string overflow detection in C
We are using DevPartners boundchecker for detecting memory leak issues. It is doing a wonderful job, though it does not find string overflows like the following
char szTest [1] = "";
for (i = 0; i ...
3
votes
3answers
839 views
FastMM4 says “The block header has been corrupted”
I had this nasty bug that disappeared in the past but now after quite some time it returned.
I have two TSam objects (derived from TPersistent) created and loaded into an TAsmJob object (derived from ...
2
votes
4answers
82 views
Run-time detection of memory deletion
The code:
int *ptr = new int[10];
int *q = ptr;
delete q;
works fine without any issues (no run-time error).
However, the following code:
int *ptr = new int[10];
int *q = ptr;
q++;
delete q;
...
2
votes
6answers
363 views
How to find place of buffer overflow and memory corruptions?
valgrind can't find anything useful. I'm confused.
Symptomes:
my data corrupted by a malloc() call
return address of my function is replaced via something wrong
PS: code does NOT segfault
...
2
votes
10answers
1k views
Why does this code corrupt memory?
This is a fairly newbie question which should be answerable reasonably quickly...
Basically, after the first call to Printf in echo, the contents of args is corrupted. It sounds to me like i'm ...
1
vote
0answers
177 views
FreeDOS + RHIDE (DJGPP environment) = DOS Memory Corruption?
I'm running a virtual machine (using Oracle VM VirtualBox) with FreeDOS installed.
After I enter the DJGPP IDE (called "RHIDE") and run an application once, I can no longer run anything, and when I ...
1
vote
3answers
429 views
Heap corruption not detected by Valgrind or Electric Fence. Should I be suspicious? (C++)
I recently encountered my first battle (solved) with heap corruption. On my linux machine at home the culprit code exits without error using valgrind and electric-fence(with gdb). Yet on the windows ...
1
vote
2answers
81 views
How to use free on a handle inside a list?-> C -> windows API
I have a list in C that is something like this:
typedef struct _node
{
int number;
DWORD threadID;
HANDLE threadH;
struct *_node next;
} *node;
And you have somthing like this:
node ...
1
vote
2answers
238 views
Anyone here have an opinion on HeapAgent?
I'm trying to track down some memory corruption going on in an app - I've heard of (but never used) Boundschecker. Rumour is that it's way to slow to use in a high performance application like a game ...
1
vote
2answers
150 views
Output spits two extra control characters, possibly a memory corruption bug?
I have the following program test.cc:
#include <iostream>
unsigned char bogus1[] = {
// Changing # of periods (0x2e) changes output after periods.
0x2e, 0x2e, 0x2e, 0x2e
};
unsigned int ...
1
vote
3answers
301 views
Can you force a crash if a write occurs to a given memory location with finer than page granularity?
I'm writing a program that for performance reasons uses shared memory (sockets and pipes as alternatives have been evaluated, and they are not fast enough for my task, generally speaking any IPC ...
1
vote
9answers
1k views
Perplexing STL bug in Release in Visual Studio
I have what I'm pretty sure is a bug in the optimizer in Visual studio 2005. The problem is with an STL map.
Here's the relevant code:
MyMapIterator myIt = m_myMap.find(otherID);
if (myIt != ...
0
votes
0answers
85 views
Memory leaks & Memory Corruptions in Android Native Code
Is anybody used Valgrind for Android Native Code ?
Is there any way to find out Memory leak and Memory Corruption in Native Code of Android ?
Regards
Rke
0
votes
2answers
69 views
Segmentation Fault and Memory Corruption with pointer to array of pointers
The objective here is to have a pointer that works like a 2D matrix. I've tested the following bit of code for creating a pointer to and array of integer pointers. It compiles and runs fine. (This is ...
0
votes
1answer
77 views
Variable Corruption C++ String Visual Studio 2005 [closed]
I have following code in my project.
g(const string& str)
{
printf("%s", str.c_str());
}
f()
{
string str("whatever");
g(str);
}
It is part of very large code. g() is in a dll ...
0
votes
1answer
391 views
Struggling - yet another memory corruption problem, bad alloc (C++, VS 2008)
I've read a lot of posts on memory corruption and it seems like it can be a considerably difficult problem to solve. When I run my code on my linux machine it executes fine and valgrind doesn't ...
0
votes
2answers
184 views
Multi-threaded application crash - possible memory corruption?
I have a multi-threaded application in c# which basically uses lock() to access a dictionary. There are 2 threads, a consumer and a producer. The locking mecanism is very simple. This application runs ...
0
votes
0answers
59 views
Live Memory not matching Core Dumped Memory
We're trying to investigate memory corruption on an application and the exact issue we're seeing can be seen in the live memory of the application (i.e. debug code which has been added displays the ...
0
votes
3answers
708 views
Heap corruption - Vector push_back
I seem to have a corrupted heap, I cannot figure out why this is happening....
Following is the trace from valgrind..
==12697== Use of uninitialised value of size 4
==12697== at 0xDD0725: ...
0
votes
3answers
168 views
C++ : Deleting a pointer to an automatic variable
Please look at this code
int i = 10; //line 1
int *p = &i; //line 2
delete p; ...
0
votes
0answers
223 views
Corrupted memory. SQLite or Android bug
I get such stack trace:
android.database.sqlite.SQLiteException: no such table: someTa???: , while compiling: SELECT COUNT(*) FROM someTa??? WHERE a = ? AND b = ?
at ...
0
votes
2answers
198 views
Corruption of static variable from unrelated library object (and vice versa)
I have a small VC++ application, in two pieces. The first piece contains the main functionality and is compiled as a static library. The second piece is a windows service that links to the library ...
0
votes
3answers
1k views
C++ vector push_back() overwrites on another vector of the same type?
I defined a class named nth_best_parse this way:
class nth_best_parse {
public:
int traversal;
int nth_best_active;
int nth_best_passive;
double viterbi_prob;
...
0
votes
3answers
389 views
summary: malloc.c:3074 - Why does this code causes the error
The attached below C code when run gives the error
summary: malloc.c:3074: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct ...