summaryrefslogtreecommitdiffstats
path: root/src/fetch.c
diff options
context:
space:
mode:
authorTimo Teras <timo.teras@iki.fi>2009-08-04 13:57:54 +0300
committerTimo Teras <timo.teras@iki.fi>2009-08-04 13:57:54 +0300
commitec2ade154289ce587eab3375445a33cad992c234 (patch)
tree11d7c8731afa608719330ce3d63f719b250d4171 /src/fetch.c
parent8c19869c2910332913b5a4f341dbe612c691782e (diff)
state: fix world dependencies to be honored always
previously they might have been skipped on certain situations. this also fixes some other reverse dependency enforcements and implements new "pending" state for locked name.
Diffstat (limited to 'src/fetch.c')
-rw-r--r--src/fetch.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fetch.c b/src/fetch.c
index f93e465..6cd2893 100644
--- a/src/fetch.c
+++ b/src/fetch.c
@@ -193,6 +193,9 @@ static int fetch_main(void *ctx, int argc, char **argv)
struct apk_change *change;
state = apk_state_new(&db);
+ if (state == NULL)
+ goto err;
+
r = apk_state_lock_dependency(state, &dep);
if (r != 0) {
apk_state_unref(state);