]> granicus.if.org Git - jq/commitdiff
Fix include/import namespace confusion
authorMuh Muhten <muh.muhten@gmail.com>
Thu, 12 Oct 2017 18:46:31 +0000 (14:46 -0400)
committerNico Williams <nico@cryptonector.com>
Wed, 30 Jan 2019 15:47:24 +0000 (09:47 -0600)
src/linker.c

index 1b9d62c895c44d2dde2c8cec755529f36972fd09..365480b059c0a741b6fc0c2c470683fca11636da 100644 (file)
@@ -233,9 +233,9 @@ static int process_dependencies(jq_state *jq, jv jq_origin, jv lib_origin, block
   jv deps = block_take_imports(src_block);
   block bk = *src_block;
   int nerrors = 0;
-  const char *as_str = NULL;
 
   jv_array_foreach(deps, i, dep) {
+    const char *as_str = NULL;
     int is_data = jv_get_kind(jv_object_get(jv_copy(dep), jv_string("is_data"))) == JV_KIND_TRUE;
     int raw = 0;
     jv v = jv_object_get(jv_copy(dep), jv_string("raw"));