Merge branch 'js/empty-config-section-fix'

Error codepath fix.

* js/empty-config-section-fix:
  config: a user-provided invalid section is not a BUG
This commit is contained in:
Junio C Hamano 2018-05-30 21:51:26 +09:00
Родитель e12cbeaa62 438a87d1e2
Коммит 2305770816
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2359,7 +2359,7 @@ static int store_aux_event(enum config_event_t type,
if (type == CONFIG_EVENT_SECTION) {
if (cf->var.len < 2 || cf->var.buf[cf->var.len - 1] != '.')
BUG("Invalid section name '%s'", cf->var.buf);
return error("invalid section name '%s'", cf->var.buf);
/* Is this the section we were looking for? */
store->is_keys_section =