On Friday, 13 September 2019 at 05:39:06 UTC, Joel wrote:
I edited one of my librarys and found my programs crashing. At
first, I couldn't find what was wrong but used GitHub to review
my changes. I found an enum[0] that had a name change - that my
programs weren't even using. All the change that was from 'enum
g_Draw {text, input}' to 'enum g_draw {text, input}' (just
changed the D to lowercase). I fixed it by making the D
uppercase again - D Programming Language (code-d) marks it as
not the right style.
https://github.com/joelcnz
[0] JecLib - base.d
Actually, forget about the above. It's still crashing in run time.
jex(2204,0x700005356000) malloc: Incorrect checksum for freed
object 0x7ffc9368cdf8: probably modified after being freed.
Corrupt value: 0x7ffc9368000d
jex(2204,0x700005356000) malloc: *** set a breakpoint in
malloc_error_break to debug
Program exited with code -6
Also get:
Program exited with code -11
Having this problem since documenting (eg /// discription) some
of my code.