aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 2628849d78e..cb842dbf669 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -1732,6 +1732,8 @@ process_file_name (char *file, language *lang)
1732 char *cmd = xmalloc (buf_len); 1732 char *cmd = xmalloc (buf_len);
1733 snprintf (cmd, buf_len, "%s %s > %s", 1733 snprintf (cmd, buf_len, "%s %s > %s",
1734 compr->command, new_real_name, new_tmp_name); 1734 compr->command, new_real_name, new_tmp_name);
1735 free (new_real_name);
1736 free (new_tmp_name);
1735#endif 1737#endif
1736 inf = (system (cmd) == -1 1738 inf = (system (cmd) == -1
1737 ? NULL 1739 ? NULL