diff options
author | Marvin Borner | 2021-01-08 14:51:11 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-08 14:51:11 +0100 |
commit | 01c570789d7f9ccc1521b791903c8a499b0f6323 (patch) | |
tree | e5275dbbc207db6be843df918b3944cc822d0819 /libgui/psf.c | |
parent | 52920b03e996cf60b2665772837bfa0f1661a430 (diff) |
Kinda working VFS implementation
Diffstat (limited to 'libgui/psf.c')
-rw-r--r-- | libgui/psf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libgui/psf.c b/libgui/psf.c index d6dc9c3..f7271a8 100644 --- a/libgui/psf.c +++ b/libgui/psf.c @@ -25,6 +25,9 @@ int psf_verify(char *data) struct font *psf_parse(char *data) { + if (!data) + return NULL; + int version = psf_verify(data); char *chars; |