Klaus Frank

Results 190 comments of Klaus Frank

Only in visual studio. Haven't done it in the x64dbg or windbg yet.

Here you go, the horizontal lines separate threads: ![image](https://user-images.githubusercontent.com/2544867/176080697-b0181d23-578e-4ba4-a679-1cf5b42b16f5.png) ![image](https://user-images.githubusercontent.com/2544867/176080741-5a1567f8-58b6-4840-b0c0-0b840238e10d.png) ![image](https://user-images.githubusercontent.com/2544867/176080798-2d658425-0424-494f-8210-d7c3e383d104.png)

Those are the exact positions where the instruction pointer was currently pointing to. Sadly it doesn't show the function name. For that I have to click on each individual one...

Apparently, that was my fault. I didn't download the symbols within x64dbg. This already looks a bit better (but I don't have a PDB file for monerod (it's not within...

Filesystem NTFS data.mdb size: 113 GB (122.395.095.040 bytes) the strlen() is called once I hit "step over", so it's probably the exception handler within monerod I suppose (hard to tell...

And when looking at the asm code of strlen we can see why it crashes. Somehow it ends up with a null pointer in RAX and tries to read from...

I deleted the database and let it resync again (this time with `--db-sync-mode safe`) and it worked. I don't know why it failed at the first initial sync. But the...

fyi for `git diff` to work you don't need to check-in unencrypted files. All it needs is a textdiv filter. Git will call it expecting it to decrypt the file...

I've a similar problem. But for me it's within _includes. I'm using lunr. This is the code I use within `_includes\search-lunr.html` which is included within the `_layouts\default.html`. Therefore I think...

Yes, I was using Jekyll 4.2.0. I now also tried `master` as you suggested and it works with that one.