X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=builtin%2Fcat-file.c;h=73c81f0cb1ae34169667adc7ee7fc246468e08a4;hb=3b8a1e1e455fd979a37107581099869113bca442;hp=9af863e7915d21aee7af3cb4d01ebbad2efbcb59;hpb=a86828eac575fc349430d4acf0e1fe65de36bd24;p=platform%2Fupstream%2Fgit.git diff --git a/builtin/cat-file.c b/builtin/cat-file.c index 9af863e..73c81f0 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -61,7 +61,8 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name, if (unknown_type) flags |= LOOKUP_UNKNOWN_OBJECT; - if (get_sha1_with_context(obj_name, 0, oid.hash, &obj_context)) + if (get_sha1_with_context(obj_name, GET_SHA1_RECORD_PATH, + oid.hash, &obj_context)) die("Not a valid object name %s", obj_name); if (!path) @@ -166,6 +167,7 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name, write_or_die(1, buf, size); free(buf); + free(obj_context.path); return 0; }