Merge branch 'kb/path-max-must-go'

* kb/path-max-must-go:
  cache.h: rename cache_def_free to cache_def_clear
This commit is contained in:
Junio C Hamano 2014-07-16 11:32:33 -07:00
Родитель 6a5713b576 2a60839150
Коммит c9831bb09d
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1115,7 +1115,7 @@ struct cache_def {
int prefix_len_stat_func;
};
#define CACHE_DEF_INIT { STRBUF_INIT, 0, 0, 0 }
static inline void cache_def_free(struct cache_def *cache)
static inline void cache_def_clear(struct cache_def *cache)
{
strbuf_release(&cache->path);
}

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

@ -63,7 +63,7 @@ static void *preload_thread(void *_data)
continue;
ce_mark_uptodate(ce);
} while (--nr > 0);
cache_def_free(&cache);
cache_def_clear(&cache);
return NULL;
}