summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthibault.ferrante <thibault.ferrante@gmail.com>2021-01-13 18:00:58 +0100
committerTimo Teräs <timo.teras@iki.fi>2021-01-14 16:19:54 +0200
commited2e23c8c793e34a2ced894b88c13a0b1077ce05 (patch)
treedd85776da93f0c52da516c1913a1b6a42a9c3212
parent880e1231d8095c7b519dcfd107c2973eb41b0ca0 (diff)
downloadapk-tools-ed2e23c8c793e34a2ced894b88c13a0b1077ce05.tar.gz
apk-tools-ed2e23c8c793e34a2ced894b88c13a0b1077ce05.tar.bz2
apk-tools-ed2e23c8c793e34a2ced894b88c13a0b1077ce05.tar.xz
apk-tools-ed2e23c8c793e34a2ced894b88c13a0b1077ce05.zip
database.c: Fixed package DESCRIPTION parsing
Regression introduced by 0fb0d30 which makes parsing a description a critical failure. [TT: Minor stylistic change. Fix also missing final line change from the earlier commit]
-rw-r--r--src/database.c1
-rw-r--r--test/iolimit1.test2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c
index b21737a..82bf790 100644
--- a/src/database.c
+++ b/src/database.c
@@ -2187,6 +2187,7 @@ static int load_apkindex(void *sctx, const struct apk_file_info *fi,
if (r <= 0)
return r;
+ r = 0;
repo = &ctx->db->repos[ctx->repo];
if (strcmp(fi->name, "DESCRIPTION") == 0) {
diff --git a/test/iolimit1.test b/test/iolimit1.test
index 066e89b..750ff8a 100644
--- a/test/iolimit1.test
+++ b/test/iolimit1.test
@@ -2,4 +2,4 @@
--test-repo iolimit.repo
add test-f
@EXPECT
-ERROR: Failed to open repository iolimit.repo : No buffer space available \ No newline at end of file
+ERROR: Failed to open repository iolimit.repo : No buffer space available