r77: fixed an index loading bug (offset not set)

This commit is contained in:
Heng Li
2017-06-26 13:56:25 -04:00
parent 10644f2165
commit de54c9dac2
5 changed files with 19 additions and 12 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ mm_tbuf_t *mm_tbuf_init(void)
{
mm_tbuf_t *b;
b = (mm_tbuf_t*)calloc(1, sizeof(mm_tbuf_t));
b->km = km_init();
// b->km = km_init();
b->sdb = sdust_buf_init(b->km);
return b;
}