Tagged Questions
An access violation (also known as segmentation fault) is generally an attempt to access memory that the CPU cannot physically address. It is often caused when attempting to access a null reference or a reference to memory that has been freed.
22
votes
5answers
459 views
Why doesn't *(int*)0=0 cause an access violation?
For educational purposes, I'm writing a set of methods that cause runtime exceptions in C# to understand what all the exceptions are and what causes them. Right now, I'm tinkering with programs that ...
9
votes
2answers
141 views
Why would this access violation occur with the /Og and /GL flags, with pass-by-reference?
When (and only when) I compile my program with the /Og and /GL flag using the Windows Server 2003 DDK C++ compiler (it's fine on WDK 7.1 as well as Visual Studio 2010!), I get an access violation when ...
8
votes
4answers
441 views
Why can't I return a char* string from C++ to C# in a Release build?
I'm attempting to call the following trivial C function from C#:
SIMPLEDLL_API const char* ReturnString()
{
return "Returning a static string!";
}
With the following P/Invoke declaration (with ...
8
votes
5answers
223 views
Getting Segmentation Fault
I saw many questions about getting segmentation fault in C program here in SO, and I thought it would be great to have a reference to those here, a question with some cases that are causing ...
8
votes
4answers
803 views
Random Access Violations in my code
I have been modifying, debugging, modifying, debugging (you know the drill) and I just can't figure out what is causing these Access Violations!
The most typical one is with "Read of adress 80000000" ...
7
votes
2answers
28k views
Attempted to read or write protected memory
I've started seeing an AccessViolationException being thrown in my application a several different spots. It never occured on my development pc, our test server. It also only manifested itself on 1 ...
6
votes
7answers
437 views
How to find a dangling interface that causes an AV in Delphi
I've a complex application to which I've just introduced some changes, adding a couple of new classes with interfaces and deleting some others. Functionally it all works but I get an access violation ...
6
votes
4answers
11k views
access violation writing location?
I have a simple program and I get access violation at *(str + start). why? i should be able to change it. Right?
void fn()
{
char *str = "Hello wordl!";
int end = strlen(str);
int ...
6
votes
9answers
834 views
About the non-nullable types debate
I keep hearing people talk about how non-nullable reference types would solve so many bugs and make programming so much easier. Even the creator of null calls it his billion dollar mistake, and Spec# ...
6
votes
7answers
3k views
How to find out who's causing an access violation error?
I'm getting reports that my app is causing a GPF on some Vista machines. The error message is something like this:
access violation at 0x75784062 ( tried to write to 0x00000006)
In order to fix ...
5
votes
2answers
331 views
Upgrade From Silverlight 4 to Silverlight 5 causing AccessViolationException
We have upgraded our project from Silverlight 4 to Silverlight 5 and now we are experiencing
AccessViolationException from time to time in different places in the code, this exception is also causing ...
5
votes
1answer
414 views
AccessViolationException when PInvoking C++ DLL (cdecl calling convention problem?) [closed]
I've spent all day researching this, and I'm none the wiser:
I have a C# DLL which PInvokes a method in a C++ DLL. I have had no problems doing this when compiling in Debug mode, but when compiling ...
5
votes
1answer
712 views
finding the cause of System.AccessViolationException
Our application experiences the odd fatal System.AccessViolationException. We see these as we've configured the AppDomain.CurrentDomain.UnhandledException event to log the exception.
Exception: ...
5
votes
1answer
446 views
GraphViz C# interop resulting in AccessViolationException occasionally
Using David Brown's downloadable sample at ImplicitOperator I've put together an often working GraphViz renderer of a DOT file to an in-memory image.
Unfortunately, my version fails at a guestimated ...
5
votes
4answers
2k views
Access Violation Exception/Crash from C++ callback to C# function
So I have a native 3rd party C++ code base I am working with (.lib and .hpp files) that I used to build a wrapper in C++/CLI for eventual use in C#.
I've run into a particular problem when ...
4
votes
2answers
131 views
Somehow accidentally mixing TEdit.Text and TLabel.Caption works without exception?
I'm working with dynamically creating multiple different types of controls and storing them in a list in the background. Two of such controls are a TEdit and a TLabel. These controls are all ...
4
votes
2answers
142 views
Safe way in Delphi for a Form to distribute interface objects tied to its lifetime?
I have a Delphi Form that provides the functionality behind an interface object that other parts of the code get references too via a property belonging to the Form. I can't delegate the interface ...
4
votes
2answers
115 views
FMod Memory Stream Problem
EDIT: Well...that's very interesting. I made settings into a pointer and passed that. Worked beautifully. So, this is solved. I'll leave it open for anyone curious to the answer.
I'm having an ...
4
votes
2answers
563 views
Attempted to read or write protected memory in Oracle 11g with ODP.NET
I am developing an application that is supposed to run for long periods and make extensive usage of an Oracle (11g) database via ODP.NET.
It happens, though, that once in a while (every 2 or 3 days) ...
4
votes
2answers
374 views
Debugging Access Violation (AV) errors?
What tips can you share to help locate and fix AV errors when writing Applications in Delphi?
I believe AV errors are usually caused by trying to access something in memory that has not yet been ...
4
votes
1answer
435 views
How do I prevent AccessViolationException when returning a string from C++ to C# on 64-bit Windows?
I am using a third-party, proprietary DLL for which the source code is not available to me. Wrapper code that appears to have been auto-generated using SWIG 1.3.39 is, however, available to me. The ...
4
votes
3answers
502 views
Randomly occuring AccessViolationException in GDI+
We've got the problem that sometimes an AccessViolationException occurs and a simple group box gets drawn with white background and a red cross on top of it. We can't reproducable this bug reliably, ...
4
votes
1answer
327 views
Odd problem with System.AccessViolationException
I have an asp.net (3.5) web application.
In one page i use an unmanaged C library (a simulator) that produces a set of results based on some input.
When i've set the debug="false" in web.config ...
4
votes
2answers
123 views
Unusual exception behaviour?
I have never come across this kind of behaviour before and I wondered if anyone is able to shed some light on the matter?
So as you can see in the picture, I am catching exceptions of type ...
4
votes
3answers
209 views
Exceptions and Access Violations in Paint events in Windows
After executing some new code, my C++ application started to behave strange (incorrect or incomplete screen updates, sometimes no screen updates at all).
After a while we found out that the new code ...
4
votes
2answers
1k views
Why does CoUninitialize cause an error on exit?
I'm working on a C++ application to read some data from an Excel file. I've got it working, but I'm confused about one part. Here's the code (simplified to read only the first cell).
//Mostly copied ...
4
votes
6answers
488 views
access violation in WM_PAINT not caught
To test this problem I have written a minimal windows application. If I force an access violation in the WM_PAINT handler this exception never gets to the debugger. If started without debugger the ...
3
votes
3answers
321 views
Access violation when freeing TObjectList
I have the following Delphi code:
destructor TXX_XXXX.Destroy;
var
i: Integer;
begin
if Assigned(Allocations) then
begin
for i:=0 to (Allocations.Count - 1) do
begin
try
...
3
votes
2answers
298 views
Access Violation in function CreateProcess in Delphi 2009
In my program I've the following code:
//Code
if not CreateProcess(nil, NonConstCmd, nil, nil, True, NORMAL_PRIORITY_CLASS or
CREATE_NEW_PROCESS_GROUP, nil, PCh, SI, P) then
//Code
And I keep ...
3
votes
1answer
122 views
Access violation on unusual program termination (C++)
The following minimum code examples runs fine when it is terminated normally (by pressing enter):
#include <stdio.h>
#include <iostream>
#include <string>
using namespace std;
...
3
votes
1answer
325 views
Virtual Destructor causes Access Violation
I am trying to make a DLL file compatible with different compiler configurations (Debug, Release,..). In order to make sure that an object is removed the right way I managed to write a pointer wrapper ...
3
votes
2answers
597 views
Delphi Access Violation Error When Assigning Strings between record types
I have a simple record type. I allocate an new instance of this record and use a procedure ("_clone") to copy values from an existing record to the new one. I obtain an access violation only when ...
3
votes
1answer
353 views
Connecting to a remote MySQL server from a Delphi program through SSL
I don't have a good knowledge of SSL principles, but just want the encryption to work for me.
I have a DB and a user with "REQUIRE X509" specified.
The necessary certificates have been created as ...
3
votes
4answers
325 views
Delphi: Access violation when putting a string in an editbox?
Well, I am studing some inline assembly in Delphi and the assembly crypto routine is all going great, until I try to parse the ShortString into the Textbox.
The violation I get is as follows:
The ...
3
votes
4answers
1k views
Access Violation Exception only appearing when running C# app without debugger attached
I have an application that works fine in Visual Studios 2008, and I am trying to get it into VS 2010 in order to use .NET 4, and I have a really weird problem. When I run the code from either Release ...
3
votes
5answers
1k views
Delphi access violation assigning local variable
This seems like the simplest thing in the world and I'm ready to pull my hair out over it.
I have a unit that looks like this ;
Unit myUnit;
// ...
//normal declarations
//...
Public
//bunch of ...
3
votes
4answers
299 views
C toLowerCase Function won't work - Access violation
I have a simple function which takes an array of characters as an argument, and converts all the characters to lower case. However, I get a weird access violation error. Here's the code:
void ...
3
votes
5answers
209 views
Can objects be unwinded before they are created on stack?
We have been debugging a strange case for some days now, and have somewhat isolated the bug, but it still doesn't make any sense. Perhaps anyone here can give me a clue about what is going on.
The ...
3
votes
7answers
664 views
Access violation exception when calling a method
I've got a strange problem here. Assume that I have a class with some virtual methods. Under a certain circumstances an instance of this class should call one of those methods. Most of the time no ...
3
votes
4answers
279 views
Why is my char* writable and sometimes read only in C++
I have had really big problems understand the char* lately.
Let's say I made a recursive function to revert a char* but depending on how I initialize it I get some access violations, and in my C++ ...
3
votes
2answers
432 views
Access violation where there wasn't one before
I'm P/Invoking out to Graphviz as shown here. When I wrote that blog entry, the code worked just fine. Now, I'm putting together an HttpModule that renders Graphviz graphs using that code, but I get ...
3
votes
2answers
2k views
Common causes of - Access Violation errors under .NET
I'm looking for common causes of Access Violation errors under .NET.
Things I have checked so far -
Call Dispose on all objects implementing IDisposable
Check for valid arguments in calls to COM ...
3
votes
2answers
711 views
What are some techniques for troubleshooting very intermittent Access Violation on a Windows Mobile Device?
I have a large Compact Frameworks V2.0 application that in most cases works very well. On certain devices about once a day, a user receives a Native Error 0xC0000005 that is not caught with the ...
3
votes
5answers
2k views
AccessViolationException from a combo: Attempted to read or write protected memory
Users are occassionally getting the above error when using our application (VB.Net, Winforms, using v2 of the framework). I'm not able to reproduce it. The callstack is as follows:
: ...
2
votes
2answers
66 views
Pointers are being invalidated some how, which leads to an Access Violation
Dev Environment is VS2010 and language is mixed C# (GUI) and C++ (Sim Engine), compiling for 32-bit Windows. The exceptions occur on every version of Windows we have tested with including 32-bit XP, ...
2
votes
2answers
145 views
Why does freeing a bad object pointer throw EPrivilege instead of EAccessViolation?
Why do i get an "EPrivilege - Privileged instruction" when I execute this procedure instead of Access Violation?
{$Warnings OFF}
procedure TFrmMyTest.mnuCrashMeClick(Sender: TObject);
var t: ...
2
votes
2answers
136 views
Memory Access violation C++ Borland
class Register
{
private:
DWORD ax,dx,cx,bx; // POH
DWORD bp,sp;
DWORD flag, ip;
public:
//====================================================
Register()
...
2
votes
1answer
104 views
AccessViolationException after upgrade to .Net 4.0
I upgrade a wpf desktop application from .net 3.5 to .net 4.0.(Changed the target framework to 4.0). After the upgrade it shows some unexpected behaviours.
There is a tab control in the application. ...
2
votes
1answer
103 views
LoadToFile issue when trying to load .txt file into a string
After my previous question of SavingToFile with TStringList, I now need to load the file I created called Password.txt using LoadFromFile but I don´t know what the form of LoadFromFile is. The ...
2
votes
1answer
189 views
Delphi: How can I debug access violations when closing my application?
I'm using Delphi 6 and I've got an application which when being shut down produces access violation errors. We use EurekaLog so I'm getting stack traces for debugging, but the errors seem to occur ...