diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-08-06 14:50:51 +0300 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-08-06 14:50:51 +0300 |
commit | 974a00bc5f42d11da1b0f27a4c2d399147a07f10 (patch) | |
tree | c743f8dac247889f447abf57350e818ce8b03468 /src/state.c | |
parent | ecdacd15032578148489f868fd928fb502032c60 (diff) | |
download | apk-tools-974a00bc5f42d11da1b0f27a4c2d399147a07f10.tar.gz apk-tools-974a00bc5f42d11da1b0f27a4c2d399147a07f10.tar.bz2 apk-tools-974a00bc5f42d11da1b0f27a4c2d399147a07f10.tar.xz apk-tools-974a00bc5f42d11da1b0f27a4c2d399147a07f10.zip |
state, update: fixes
Diffstat (limited to 'src/state.c')
-rw-r--r-- | src/state.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/state.c b/src/state.c index d886754..1b1b333 100644 --- a/src/state.c +++ b/src/state.c @@ -502,7 +502,9 @@ int apk_state_lock_name(struct apk_state *state, } /* If the chosen package is installed, all is done here */ - if (oldpkg == newpkg && !(newpkg->name->flags & APK_NAME_REINSTALL)) + if (oldpkg == newpkg && + (newpkg == NULL || + !(newpkg->name->flags & APK_NAME_REINSTALL))) return 0; /* Track change */ |