X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=71c7540669b2b3b8e178220360a89dd4cb8b9ea6;hb=f50e984cec7d3e0a6e372c319bc8e9627f1dd2ff;hp=29846e23f6a5aef4aef9320ea180e8a0797a5800;hpb=6ecd0010931a988792e672e1fe0a1192fca7b002;p=open-adventure.git diff --git a/misc.c b/misc.c index 29846e2..71c7540 100644 --- a/misc.c +++ b/misc.c @@ -291,7 +291,7 @@ bool YES(const char* question, const char* yes_response, const char* no_response reply = get_input(); - char* firstword = (char*) xmalloc(strlen(reply)); + char* firstword = (char*) xmalloc(strlen(reply)+1); sscanf(reply, "%s", firstword); for (int i = 0; i < (int)strlen(firstword); ++i)