diff options
| -rw-r--r-- | config.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -8,6 +8,8 @@ char *read_file(const char *filename, long *size) {  	FILE *fp = fopen(filename, "r");  	/* Size of the file, in bytes. */  	long filesize = 0; +	/* Buffer of the file contents. */ +	char *buf;  	/* Return NULL, if we couldn't open the file. */  	if (fp == NULL) { | 
