Eric

Results 19 issues of Eric

I am trying run winafl on a Delphi 32bit executable, but afl-fuzz fails with a GLE=2 and no further details ``` S:\winafl\bin32>afl-fuzz -i input -o output -t 1000 -D s:\DynamicRIO\bin32\...

With BeaEngine 5.3 64 bit DLL, when disassembling 64bit, `F20F5E142534120000` is being decoded as `divsd xmm2, qword ptr [00007FF4FD806425h]` while it should be something like `divsd xmm2, qword ptr [0000000000001234h]`

Hi, there are a couple issues with the BeaEngineDelphi64 header - TREGISTERTYPE declares a "type" field but that is a reserved keyword, it should be renamed or prefixed with '&'...

This is a request for an option to be able to choose the background of the editor to something not white, and also have margins in the editor, so that...

Currently when resizing the panels, be it because of a manual resize or because a panel was added, the editor will jump around in the document. This is a request...

bug

Currently every time you save, the current file is overwritten. This is a request for an option where the previous file would be saved as ".bak" or in a hidden...

enhancement

Just downloaded a small map https://protomaps.com/downloads/small_map/a6f512ca-0157-4ca0-8229-9aecb99dc75b and placed the files on a server, it "works", but with occasional blank tiles (that go away when scrolling or refreshing), and the console...

While benchmarking cblas_sgemv against other implementations, I found it apparently switches between algorithms at around a size of 96. That results in a massive drop in performance from being almost...

The implementation of TSynGeneralSyn.SetKeyWords first turns all the strings in its TUnicodeStrings parameter, then forces it to be Sorted (see snippet below) before the method exits. Does anyone know if...

The code tests if res < 0 so the res = 0 will always fail, and WSAEWOULDBLOCK sleep never happens ``` // get the data res := socket.Recv((PByte(IoBuffer) + cbData),...