Fix a memory leak shown by valgrind

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Andreas Ericsson <ae@op5.se>
This commit is contained in:
Ramsay Jones 2010-06-01 19:39:24 +01:00 committed by Andreas Ericsson
parent 28f9832928
commit 702bd70595

View File

@ -167,6 +167,7 @@ void git_revpool_table_free(git_revpool_table *table)
}
}
free(table->nodes);
free(table);
}