projects
/
satune.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35f0fe1
)
Fixing memory leak bug ...
author
Hamed
<hamed.gorjiara@gmail.com>
Mon, 11 Sep 2017 23:15:53 +0000
(16:15 -0700)
committer
Hamed
<hamed.gorjiara@gmail.com>
Mon, 11 Sep 2017 23:15:53 +0000
(16:15 -0700)
src/AST/table.cc
patch
|
blob
|
history
diff --git
a/src/AST/table.cc
b/src/AST/table.cc
index 828cd79af944634c006f7b6efc81b3e9034d3bbf..838a53a2e641f6a64e98f003f4336f477ad4c432 100644
(file)
--- a/
src/AST/table.cc
+++ b/
src/AST/table.cc
@@
-93,6
+93,7
@@
void Table::serialize(Serializer* serializer){
serializer->mywrite(&entry->inputSize, sizeof(uint));
serializer->mywrite(entry->inputs, sizeof(uint64_t) * entry->inputSize);
}
+ delete iterator;
}