twn_util: dont add empty list

This commit is contained in:
veclavtalica 2025-03-10 07:05:45 +03:00
parent 474ea84a77
commit 8e15c9ec3c

View File

@ -233,6 +233,9 @@ String file_read(char const *file, char const *operation) {
return (String){NULL, 0};
}
if (list.list == NULL)
return (String){NULL, 0};
String s = {(char *)list.list, (float)list.length - 1};
arrpush(read_files, s);