Tagged Questions
The overrun tag has no wiki summary.
1
vote
5answers
90 views
C tiny, pre-allocated array does not overrun
I was expecting a segfault with this code:
char * foo (char my_ascii[10])
{
strcpy (my_ascii, "0123456789");
return my_ascii;
}
char bar[2];
printf("%s\n", foo (bar));
Because bar reserves a ...
1
vote
1answer
203 views
Stack buffer overrun (Windows, C++) : how can I detect the culprit?
Are there any tools/libraries on Windows that can help me tarck down the culprit? This is a fairly large codebase, with multiple threads.
I code for Linux mostly; Windows is unfamiliar territory. ...
0
votes
0answers
25 views
.NET SerialError.Overrun on a modern computer
I use an XModem-like protocol written with .NET 4.0 (C#) to download configuration files through a serial port (RS232) from a hardware device. The communication settings are 115200 baud, 8 bits, no ...
0
votes
2answers
363 views
C# Application crashes with Buffer Overrun in deployed (.exe) version, but not in Visual Studio
I have a c# Windows Forms application that runs perfectly from within Visual Studio, but crashes when its deployed and run from the .exe. It crashes with a Buffer Overrun error...and its pretty clear ...