[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.c

Does anyone know what this means? CAVIStreamSynth: System exception - Access Violation at 0x62622371, reading from 0x62c8d334

Geordie La Forge @ http://MeAmI.org

6/16/2011 2:49:00 AM

Does anyone know what CAVIStreamSynth: System exception - Access
Violation at 0x62622371, reading from 0x62c8d334 means? Thanks, Martin
3 Answers

Geoff

6/16/2011 3:49:00 AM

0

On Wed, 15 Jun 2011 19:49:21 -0700 (PDT), CS Student
<marty.musatov@gmail.com> wrote:

>Does anyone know what CAVIStreamSynth: System exception - Access
>Violation at 0x62622371, reading from 0x62c8d334 means? Thanks, Martin

Smells like a Windows OS exception. Go to www.microsoft.com and search
there. OT for the groups in which you posted this question.

Angel

6/16/2011 2:45:00 PM

0

On 2011-06-16, CS Student <marty.musatov@gmail.com> wrote:
> Does anyone know what CAVIStreamSynth: System exception - Access
> Violation at 0x62622371, reading from 0x62c8d334 means? Thanks, Martin

From what little I know about the inner workings of Windows, I'd say the
program CAVIStreamSynth tried to read a memory location it is not
allowed to read. You get that sort of thing when you mess up array
indexing or pointer arithmetic.

This is more a question for comp.os.windows, though.


--
"C provides a programmer with more than enough rope to hang himself.
C++ provides a firing squad, blindfold and last cigarette."
- seen in comp.lang.c

Shao Miller

6/17/2011 12:27:00 AM

0

On 6/15/2011 9:49 PM, CS Student wrote:
> Does anyone know what CAVIStreamSynth: System exception - Access
> Violation at 0x62622371, reading from 0x62c8d334 means? Thanks, Martin

My guesses:
- the program has a bug
- the program has been compromised by a virus

Either way, the description appears to have little to do with C, but the
comp.lang.c newsgroup seems to focus on the C language. In fact, I
would guess that "CAVIStreamSynth" implies that the failing component is
programmed in C++, as the "C" there might be an abbreviation for "class."

Having said that, maybe try running the program using Microsoft's WinDbg
(part of the Debugging Tools for Windows). Good luck to you.