X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=71c7540669b2b3b8e178220360a89dd4cb8b9ea6;hb=018ca9ae373090cf8ed94d577232b8b02759f4c6;hp=29846e23f6a5aef4aef9320ea180e8a0797a5800;hpb=4b93fb327a0ae07cf931f0ebc4c9a946e4cafd6c;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)