зеркало из https://github.com/microsoft/git.git
trace2: fix incorrect function pointer check
Fix trace2_data_json_fl() to check for the presence of pfn_data_json_fl in its targets, rather than pfn_data_fl, which is not actually called. Signed-off-by: Josh Steadmon <steadmon@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
a446f2dcc8
Коммит
22a7338318
2
trace2.c
2
trace2.c
|
@ -710,7 +710,7 @@ void trace2_data_json_fl(const char *file, int line, const char *category,
|
||||||
us_elapsed_region = tr2tls_region_elasped_self(us_now);
|
us_elapsed_region = tr2tls_region_elasped_self(us_now);
|
||||||
|
|
||||||
for_each_wanted_builtin (j, tgt_j)
|
for_each_wanted_builtin (j, tgt_j)
|
||||||
if (tgt_j->pfn_data_fl)
|
if (tgt_j->pfn_data_json_fl)
|
||||||
tgt_j->pfn_data_json_fl(file, line, us_elapsed_absolute,
|
tgt_j->pfn_data_json_fl(file, line, us_elapsed_absolute,
|
||||||
us_elapsed_region, category,
|
us_elapsed_region, category,
|
||||||
repo, key, value);
|
repo, key, value);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче