JamVM 1.5.3
Classpath 0.98
The problem:
findClassFromSignature in reflect.c is causing memory overflow. This issue causes consistently reproducible segfaults.
The reason:
strlen returns the length of the string preceding the null terminator. strcpy copies the null terminated string to memory.
The solution:
Allocate another byte.
600c600
< name = pntr =...
2009-06-25 21:58:06 UTC in JamVM