瀏覽代碼

Fix mem leak in test.

scossu 2 年之前
父節點
當前提交
04f32a567b
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      test/test_graph.c

+ 2 - 0
test/test_graph.c

@@ -282,6 +282,8 @@ _graph_txn (LSUP_StoreType type)
     LSUP_graph_free (gr);
     if (type != LSUP_STORE_HTABLE) LSUP_store_free (store);
 
+    free_triples (trp); // gr copied data.
+
     return 0;
 }