libc: Add FIXME

This commit is contained in:
apio 2022-10-22 12:30:30 +02:00
parent 063e2d5e7a
commit 551d731627

View File

@ -13,7 +13,7 @@ void file_read_buf(FILE* stream)
{
if (!stream->f_buf)
{
stream->f_buf = (char*)malloc(32);
stream->f_buf = (char*)malloc(32); // FIXME: Handle errors.
stream->f_bufrsize = 32;
}
stream->f_bufoff = 0;