search for: 77f59ec8

Displaying 2 results from an estimated 2 matches for "77f59ec8".

Did you mean: 77f59ec5
2004 Jan 06
0
AW: access violation in ov_open
...he dll's and libs.... same error. it doesn't depend on which librarys I link (debug or release). same problem in both cases (I'm using #pragmas to specify the libs) when I debug the app, the error is caused here: (the inc command) 77F59EC5 mov eax,dword ptr [esi+10h] 77F59EC8 mov dword ptr [ebp-4],eax 77F59ECB mov eax,dword ptr [esi] -> 77F59ECD inc dword ptr [eax+10h] this is part of the ov_open-function. <p>HELP! PLEASE! :-) <p>Bastian <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg projec...
2001 Feb 18
2
Access Violation in ov_open
If I do something similar to the below ov_open always causes an access violation. The call to fopen is successful. Can anybody tell me why? (and how to fix it?) OggVorbis_File vf; int eof=0; int current_section; FILE *fd = fopen("c:\\test.ogg","rb"); if (!fd){ AfxTrace("fopen failed\n"); exit(0); } if(ov_open(fd, &vf, NULL, 0) < 0) {