Tagged Questions

1
vote
2answers
98 views

Access Violation in DirectX9

Easiest way to put this: My code is throwing an access violation error whenever I run it. I have concluded it is the fault of calling this->d3ddev.(whatever) inside of the function ...
1
vote
1answer
158 views

Access Violation with static arrays?

I need to parallelise an application using win32 threads. One of the portions of the code involves modifying an static array using threads. I pass the array as a parameter like this: struct ...
0
votes
2answers
39 views

C++ Access float pointer inside a class -> Access violation

Visual C++, Microsoft Visual Studio 2010 Express: Access from this malloc works: float* block = (float *)_aligned_malloc(32 * sizeof(float), CACHE_ALIGNMENT); block[0] = (float)30; // I work fine. ...
0
votes
1answer
50 views

C++ access violation crash

When I attempt to access this specific pointer, the application crashes and shows a c0000005 access violation error. How can I catch this error and keep it from closing the process as I would in C# ...
0
votes
2answers
67 views

C++ Access violation reading why?

I'm developing the application, which will get mails from servers via pop/imap protocols using C++/Winsock. Cause, the code is large to paste here , I give you the link on pastebin: ...
0
votes
0answers
72 views

Dev C++ access violation [closed]

as part of work submission, I'm supposed to submit a dev c++ project of my work, but It's giving me a whole heap of trouble. First off, it will only run in one mode, XP SP2 compatibility mode, and ...
0
votes
2answers
88 views

What could this Read Access violation Exception be due to?

My program crashes and a dialog box shows "Unhandled exception at 0x3aaf1aea (pmsqlsrv.dll) in java.exe: 0xC0000005: Access violation reading location 0x3ac60880." The statement shown as causing ...
0
votes
3answers
124 views

C++ std::cin Unhandled exception: Access violation writing location

I'm getting an access violation when trying to use std::cin. I'm using a char* and it's not allowing me to input my data.. void Input(){ while(true){ char* _input = ""; std::cin >> ...