Einzelnen Beitrag anzeigen

Pow3rus3r

Registriert seit: 17. Apr 2012
43 Beiträge
 
Delphi XE Professional
 
#14

AW: Fehler "access violation" - keine Ahnung, warum...

  Alt 14. Aug 2012, 14:07
Geh mal in die Projektoptionen und aktiviere dort die Bereichsprüfung und eventuell noch die Debug-DCUs.
Das bringt mir dann folgende Meldung im Debugger:
Code:
   LOCK DEC    [EDX-skew].StrRec.refCnt       { threadsafe dec refCount      }
Und diese Meldung befindet sich in dieser Prozedur:
Code:
procedure _UStrArrayClr(var StrArray; Count: Integer);
{$IF not defined(CPU386)}
var
  P: Pointer;
begin
  P := @StrArray;
  while Count > 0 do
  begin
    _UStrClr(P^);
    Dec(Count);
    Inc(NativeInt(P), SizeOf(Pointer));
  end;
end;
{$ELSE}
asm
        { ->   EAX pointer to str     }
        {       EDX cnt                }

        {$IFDEF ALIGN_STACK}
        SUB    ESP,4
        {$ENDIF ALIGN_STACK}
        PUSH   EBX
        PUSH   ESI
        MOV    EBX,EAX
        MOV    ESI,EDX

@@loop:
        MOV    EDX,[EBX]                      { fetch str                    }
        TEST   EDX,EDX                        { if nil, nothing to do        }
        JE     @@doneEntry
        MOV    dword ptr [EBX],0               { clear str                    }
        MOV    ECX,[EDX-skew].StrRec.refCnt   { fetch refCnt                 }
        DEC    ECX                            { if < 0: literal str          }
        JL     @@doneEntry
   LOCK DEC    [EDX-skew].StrRec.refCnt       { threadsafe dec refCount      }
        JNE    @@doneEntry
        LEA    EAX,[EDX-skew]                 { if refCnt now zero, deallocate}
        CALL   _FreeMem
@@doneEntry:
        ADD    EBX,4
        DEC    ESI
        JNE    @@loop

        POP    ESI
        POP    EBX
        {$IFDEF ALIGN_STACK}
        ADD    ESP,4
        {$ENDIF ALIGN_STACK}
end;
{$IFEND}
Das sind für mich allerdings alle böhmische Dörfer
  Mit Zitat antworten Zitat