summaryrefslogtreecommitdiff
path: root/src/wasm-ast.c
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-09-22 17:39:20 -0700
committerBen Smith <binji@chromium.org>2016-09-29 11:37:27 -0700
commitb4d2bc2f3fe925a78a7e1ea061106b1f01e8dba2 (patch)
treef6ae9ce3def03e9945cf2108221b0ab2138fa42a /src/wasm-ast.c
parentcca0d93b8ba2a6ea101f18927eddfbe5ec726dd0 (diff)
downloadwabt-b4d2bc2f3fe925a78a7e1ea061106b1f01e8dba2.tar.gz
wabt-b4d2bc2f3fe925a78a7e1ea061106b1f01e8dba2.tar.bz2
wabt-b4d2bc2f3fe925a78a7e1ea061106b1f01e8dba2.zip
parse tests for {im,ex}porting tables, etc.
Diffstat (limited to 'src/wasm-ast.c')
-rw-r--r--src/wasm-ast.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wasm-ast.c b/src/wasm-ast.c
index 12febdb0..bd3c90a5 100644
--- a/src/wasm-ast.c
+++ b/src/wasm-ast.c
@@ -513,7 +513,6 @@ void wasm_destroy_global(WasmAllocator* allocator, WasmGlobal* global) {
}
void wasm_destroy_import(WasmAllocator* allocator, WasmImport* import) {
- wasm_destroy_string_slice(allocator, &import->name);
wasm_destroy_string_slice(allocator, &import->module_name);
wasm_destroy_string_slice(allocator, &import->field_name);
switch (import->kind) {