Brian Tiffin
Brian Tiffin
In libs/std/md5.c ``` sha1_init(&ctx); sha1_update(&ctx,(unsigned char*)val_string(l)+pp,ll); sha1_final(&ctx,result); ``` `val_string(l)` should be `val_string(s)`. The exposed `$loader.loadprim("std@make_sha1", 3)` giving `make_sha1(msg, pos, len)` catchs a segfault from the primitive. using `l` length as...
This should be infinite loop code, I think, while experimenting with Neko programming. prompt$ cat gotos.neko $print("start"); $goto(next); $print("skip"); next: $print("continue"); $goto(end); $print("skip"); end: $print("end"); $goto(next); Instead, the VM translation...
Not a biggy, but `mmd` conflicts with one of the binaries in the GNU/Linux `mtools` package, which uses `mmd` for Make MSDOS Dir. Won't hurt for /usr/local/bin hand rolled installs,...