3
votes
4answers
337 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 …
2
votes
1answer
266 views
Determine reason of System.AccessViolationException
We are having nondeterministic System.AccessViolationException thrown from native code. It's hard to reproduce it, but sometimes it happens. I'm not sure if I can "just debug it" since the time needed …
2
votes
2answers
378 views
Delphi: TImage.Create causes Access violation
I apologize in advance for a newbie question, but why do I get "Access violation" error with the code below (on the "Create(SelectorForm);" line)? I tried using the main form as the owner, but it …
2
votes
2answers
478 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 …
1
vote
7answers
163 views
Can looking at freed memory cause an access violation?
Can accessing (for read only) memory freed cause an access violation, and, if so, under what circumstances?
1
vote
2answers
50 views
Why are so many errors “AccessViolationException”s?
I have seen many errors over the course of my computer-using life, and a lot of them seemed to be Access Violation Exceptions calling way out into non-readable memory or 0x00000000/0xFFFFFFFF.
What …
1
vote
3answers
85 views
Can a System.AccessViolationException happen because of faulty RAM?
I have a website that i've been working on for about a year now.
Recently, it's started throwing System.AccessViolationException every now and then, in my dev machine, mostly, when I was away from the …
1
vote
8answers
347 views
AccessViolationException in Release mode (C++)
Hi,
I'm getting the following exception when I run my application in Release mode from Visual C++.
Unhandled Exception:
System.AccessViolationException:
Attempted to read or write protected
…
1
vote
1answer
102 views
Embedded firefox/xulrunner causing AccessViolationException
Hello,
I have for the most part successfully embedded firefox/xulrunner into our c# application, but it is not without troubles. Once in a great while a AccessViolationException will be thrown which I …
1
vote
1answer
2k 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 …
1
vote
1answer
273 views
Sql Compact randomly produces AccessViolationException
I am running Sql Server Compact Edition 3.5.1.0 SP1 in a multi-thread application. The application randomly runs insert queries in transactions. With short transactions, it works fine. But when the …
0
votes
3answers
73 views
Converting a function from Vb6 to C# is throwing AccessViolationException
Hi all,
I'm converting a function from VB6 as:
Declare Function RequestOperation Lib "archivedll" (ByVal dth As Long, ByVal searchRequestBuf As String, ByVal buflen As Long, ByVal FieldNum As Long, …
0
votes
0answers
29 views
System.AccessViolationException with Dynamic Proxy Generation
We are using PostSharp to inject caching functionality, we are only seeing this issue when we are using it. When we use Spring the issue seems to go away.
Any help would be appreciated as this, the …
0
votes
1answer
139 views
Tracking down a AccessViolationException in WPF
I've written a WPF application that uses many Frame controls to view camera feeds. When deployed, it crashes pretty randomly (anywhere from 2 hours to 16+ hours), and I see these in the event log, …
0
votes
2answers
140 views
.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code.
This is kind of repeated from my previous question, although the objective of my question is completely different now.
I'm getting, now and then, about once a week, only in my development machine, a …
