We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
crypt()
On my computer, but not on @gpiedimonte's, crypt() causes a coredump when entering one's password for the first time. (This was discovered in #2.)
The problem lines in interpreter.c are:
1182:strncpy(d->pwd, crypt(arg, d->character->player.name), 10); 1380:strncpy(d->pwd, crypt(arg, d->character->player.name), 10);
crypt() doesn't return a NULL pointer; trying to print its output in gdb gives:
NULL
print
$1 = 0xfffffffff7dd41e0 <error: Cannot access memory at address 0xfffffffff7dd41e0>
The text was updated successfully, but these errors were encountered:
sshine
No branches or pull requests
On my computer, but not on @gpiedimonte's,
crypt()
causes a coredump when entering one's password for the first time. (This was discovered in #2.)The problem lines in interpreter.c are:
crypt()
doesn't return aNULL
pointer; trying toprint
its output in gdb gives:The text was updated successfully, but these errors were encountered: