pkg_init_from_file() already does this strdup(), so stop another leak.
[project/opkg-lede.git] / libopkg / opkg_install.c
index aae72be6cb0909e3c675468d3c7e1fdf9d165782..601d8388756f2360c68645496d726c030b34a7f2 100644 (file)
@@ -105,8 +105,6 @@ int opkg_install_from_file(opkg_conf_t *conf, const char *filename)
      pkg = hash_insert_pkg(&conf->pkg_hash, pkg, 1,conf);
      old = pkg_hash_fetch_installed_by_name(&conf->pkg_hash, pkg->name);
 
-     pkg->local_filename = strdup(filename);
-
      if (old) {
          old_version = pkg_version_str_alloc(old);
          new_version = pkg_version_str_alloc(pkg);