68c68,70
< fgets(Line, 64, fp);
---
> char *ret = fgets(Line, sizeof(Line), fp);
> if (!ret)
> panic("malformed file");