Commit c7e6e958 by Carlos Martín Nieto

Don't try to parse an empty config file

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
parent 30d0550d
......@@ -802,6 +802,10 @@ static int config_parse(diskfile_backend *cfg_file)
cfg_file->reader.read_ptr = cfg_file->reader.buffer.data;
cfg_file->reader.eof = 0;
/* If the file is empty, there's nothing for us to do */
if (*cfg_file->reader.read_ptr == '\0')
return GIT_SUCCESS;
skip_bom(cfg_file);
while (error == GIT_SUCCESS && !cfg_file->reader.eof) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment