Resize the string in Directory::read_file().

This commit is contained in:
Relintai 2022-04-26 22:41:03 +02:00
parent ed9b23ad86
commit 269de98d22
1 changed files with 2 additions and 0 deletions

View File

@ -122,6 +122,8 @@ String Directory::read_file(const String &path) {
long fsize = ftell(f);
fseek(f, 0, SEEK_SET); /* same as rewind(f); */
fd.resize(fsize);
fread(fd.dataw(), 1, fsize, f);
fclose(f);