remove a wrong free() in got_blame()
diff --git a/lib/blame.c b/lib/blame.c
index 0b6ffc0..bcd2b1e 100644
--- a/lib/blame.c
+++ b/lib/blame.c
@@ -427,7 +427,7 @@ got_blame(const char *path, struct got_object_id *start_commit_id,
}
err = got_object_id_str(&id_str, id);
- free(id);
+ /* Do not free id; It points into blame->lines. */
if (err) {
free(line);
break;