Ensure the pack index is opened before access
commitb77ffe8a57a0921f58cff22dcf1ed6ae64d89d6a
authorShawn O. Pearce <spearce@spearce.org>
Wed, 30 May 2007 06:13:14 +0000 (30 02:13 -0400)
committerJunio C Hamano <junkio@cox.net>
Wed, 30 May 2007 06:31:06 +0000 (29 23:31 -0700)
tree67d687cc3fdf5321caf2089eef702fb8e89e56aa
parenteaa867703927c1f383637979d16c40d996cea240
Ensure the pack index is opened before access

In this particular location of fsck the index should have already
been opened by verify_pack, which is called just before we get
here and loop through the object names.  However, just in case a
future version of that function does not use the index file we'll
double-check its open before we access the num_objects field.

Better safe now than sorry later.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-fsck.c