On Tue, Mar 19, 2013 at 06:08:00AM -0400, Jeff King wrote: > @@ -538,6 +539,8 @@ static void resolve_delta(struct object_entry *delta_obj, > > delta_obj->real_type = base->obj->real_type; > delta_obj->delta_depth = base->obj->delta_depth + 1; > + if (deepest_delta < delta_obj->delta_depth) > + deepest_delta = delta_obj->delta_depth; > delta_obj->base_object_no = base->obj - objects; > delta_data = get_data_from_pack(delta_obj); > base_data = get_base_data(base); > > and valgrind reports an uninitialized value in the conditional. But we > can see that deepest_delta is static, and therefore always has some > value. And delta_obj->delta_depth is set in the line above. So both > should have some known value, unless they are computed from unknown > values. In that case, shouldn't valgrind have previously noticed when we > accessed those unknown values? Ah, indeed. Putting: fprintf(stderr, "%lu\n", base->obj->delta_depth); before the conditional reveals that base->obj->delta_depth is uninitialized, which is the real problem. I'm sure there is some perfectly logical explanation for why valgrind can't detect its use during the assignment, but I'm not sure what it is. At any rate, doing this: diff --git a/builtin/index-pack.c b/builtin/index-pack.c index ed4c3bb..73686af 100644 --- a/builtin/index-pack.c +++ b/builtin/index-pack.c @@ -538,6 +538,8 @@ static void resolve_delta(struct object_entry *delta_obj, void *base_data, *delta_data; delta_obj->real_type = base->obj->real_type; + if (!is_delta_type(base->obj->type)) + base->obj->delta_depth = 0; delta_obj->delta_depth = base->obj->delta_depth + 1; if (deepest_delta < delta_obj->delta_depth) deepest_delta = delta_obj->delta_depth; makes the warning go away. It looks like the delta_depth value was introduced in 38a4556 (index-pack: start learning to emulate "verify-pack -v", 2011-06-03), and it used only for showing the chain depths with --verify-stat. So it is almost certainly not related to Stefan's original problem, but it does mean we've probably been computing bogus chain lengths. There may be a more reasonable place to set base->obj->delta_depth than right here; I'll see if I can cook up a real patch. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html