diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/opkg_install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopkg/opkg_install.c b/libopkg/opkg_install.c index 96e6080..3ee7242 100644 --- a/libopkg/opkg_install.c +++ b/libopkg/opkg_install.c @@ -201,9 +201,9 @@ opkg_error_t opkg_install_by_name(opkg_conf_t *conf, const char *pkg_name) } else if (cmp < 0) { new->dest = old->dest; old->state_want = SW_DEINSTALL; /* Here probably the problem for bug 1277 */ - free(old_version); - free(new_version); } + free(old_version); + free(new_version); } /* XXX: CLEANUP: The error code of opkg_install_by_name is really |