Just to be sure, make the tty playback buffer explicitly null terminated.

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@486 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Pasi Kallinen 2009-10-18 12:05:16 +00:00
parent dfc414aa19
commit cd4ae1a5f0
1 changed files with 2 additions and 1 deletions

View File

@ -136,7 +136,7 @@ ttyread (FILE * fp, Header * h, char **buf, int pread)
exit (-21);
}
*buf = malloc (h->len);
*buf = malloc (h->len + 1);
if (*buf == NULL)
{
perror ("malloc");
@ -148,6 +148,7 @@ ttyread (FILE * fp, Header * h, char **buf, int pread)
fseek (fp, offset, SEEK_SET);
return READ_EOF;
}
(*buf)[h->len] = 0;
return READ_DATA;
}