summaryrefslogtreecommitdiffstats
path: root/libopkg/pkg.c
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:26:39 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:26:39 (EST)
commit6b7a2a530a5fdd990264466882528c9db8c6ae0b (patch)
tree10c7c56fd77e5605785e169adb80cc30d7b09e23 /libopkg/pkg.c
parente29c83204200606bcac195594e39c232b09eb9e0 (diff)
opkg: mark one line that cause crash.
But it will makes the system failed in reference count. git-svn-id: http://opkg.googlecode.com/svn/trunk@143 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/pkg.c')
-rw-r--r--libopkg/pkg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libopkg/pkg.c b/libopkg/pkg.c
index d662664..10427ed 100644
--- a/libopkg/pkg.c
+++ b/libopkg/pkg.c
@@ -1737,7 +1737,8 @@ int pkg_info_preinstall_check(opkg_conf_t *conf)
// opkg_message(conf, OPKG_DEBUG2, "pkg %s: file=%s\n", pkg->name, installed_file);
file_hash_set_file_owner(conf, installed_file, pkg);
}
- pkg_free_installed_files(pkg);
+ //FIXME: mark this line. Thid avoid crash, But the reference count shall be balanced. (If there are some delay after file_hash_set_file_owner, it wont crash (Pondering why?))
+ //pkg_free_installed_files(pkg);
}
pkg_vec_free(installed_pkgs);