Tagged Questions

6
votes
8answers
345 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# …
2
votes
8answers
241 views

Delphi: Why can I link this function statically but not dynamically?

I am currently writing a module which interfaces with a black box 3rd party DLL for a check scanner. I need to have the DLL functions loaded dynamically, and this is working for all but one function. …
2
votes
6answers
374 views

Reading arbitrary memory locations? Possible?

Is there a way to (read-only) access any arbitrary memory location without running into an access violation? I thought that each process has its own virtual adress space and that it can read all …
2
votes
1answer
237 views

Need some help deciphering a line of assembler code, from .NET JITted code

In a C# constructor, that ends up with a call to this(...), the actual call gets translated to this: 0000003d call dword ptr ds:[199B88E8h] What is the DS register contents here? I know …
1
vote
1answer
50 views

Access Violation On Vista Startup

I occasionally get a strange unhandled access violation when my .NET application is started automatically on startup (using a shortcut in the "Startup" folder) by Windows Vista. I have not seen this …
1
vote
3answers
189 views

Access violation when calling external function (C++) from Delphi application

I've an external DLL written in C++. The piece below declares a struct type and a function, which, being given a pointer, fills a variable of this type: enum LimitType { NoLimit, PotLimit, FixedLimit …
1
vote
4answers
316 views

Delphi: Access violation after calling function from external DLL (C++)

There's a function, written in C++ and compiled as DLL, which I want to use in my Delphi application. Scraper.cpp: SCRAPER_API bool ScraperGetWinList(SWin winList[100]) { iCurrWin=0; …
1
vote
8answers
381 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
7answers
656 views

Access violation after catching dll exception

I have to load modules as dlls dynamically at runtime as they are not known ahead of time, just that they conform to a class interface. What I noticed is that after I catch an exception thrown by the …
1
vote
3answers
648 views

Handle access violation exception in C++ Builder?

I'm trying to do: try{ int * i = NULL; *i = 3; }catch(Exception &Err){ ShowMessage(Err.Message); } I though that this should catch access violation exception and handle it by …
0
votes
5answers
137 views

Can I put try / catch around an OS API that crashes?

I use a Windows OS library to manipulate image files. Sometimes it crashes deep inside it for no apparent reason—all the inputs are reasonable and its not a threading issue. The crash is memory A/V. …
0
votes
3answers
114 views

AV while iterating through hash_map?

_transaction is a private member variable of my class, declared as: public: typedef stdext::hash_map<wchar_t*, MyClass*, ltstr> transaction_hash_map; private: transaction_hash_map …
0
votes
7answers
274 views

C++ Dynamic Array Access Violation

** Sorry for the confusion regarding numCars in the original post. I modified the code to be consistent with the original **** The following academic program is a simplified version of the original …
0
votes
11answers
176 views

Ideas to debug and solve a very sporadic crash - appears to be an AV

Hi, I have a bug somewhere that is causing my app to just vanish without an error message or something like that. The app just dissapears from the screen and it's no longer listed on the Task …
0
votes
4answers
213 views

Using C with inline assembler beginner problem

Hello! I am just testing and trying to learn how assembler works with C. So i was browsing around some tutorials and i found this: __asm { mov ax,0B800h //startaddress for the screen …

1 2 next
15 30 50 per page