opkg: adding the hash_table_remove API, not using yet.
[project/opkg-lede.git] / libopkg / opkg_install.c
index dc014d3cebec8c7797308ff497c24033e5b66b9e..01d5875ac549f2a49b3aaa66dbbabaec05b64386 100644 (file)
@@ -597,7 +597,7 @@ static int pkg_remove_orphan_dependent(opkg_conf_t *conf, pkg_t *pkg, pkg_t *old
         if (found)
             continue;
         d_str = old_pkg->depends_str[i];
-        buf = malloc (strlen (d_str) + 1);
+        buf = calloc (1, strlen (d_str) + 1);
         j=0;
         while (d_str[j] != '\0' && d_str[j] != ' ') {
             buf[j]=d_str[j];